Hello everybody,<br>
<br>
I'm writing java interpreter in GME 5.9.21, and I would like to be able to add new
objects to a project, specifically add a child model to an already
existing model element. The code I try to use is the following:<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; myModel.createNewModel(&quot;Class&quot;);<br>
<br>
Where myModel is an instance of JBuilderModel that references an
already existing model that can contain models of the kind &quot;Class&quot;.<br>
The problem is that after executing that sentence, I get this exception:<br>
<br>
org.isis.jaut.ComException: Member not found<br>
(0x80020003)<br>
at org.isis.jaut.Dispatch.invoke(Native Method)<br>
at org.isis.jaut.Dispatch.invoke(Dispatch.jara:412)<br>
at org.isis.jaut.Dispatch.call(Dispatch.java:484)<br>
at org.isis.gme.meta.MgaMetaModel.getRoleByName(MgaMetaModel.java:91)<br>
at org.isis.gme.bon.JBuilderModel.createNewModel(JBuilderModel.java:606)<br>
<br>
Does this mean that the method createNewModel is not implemented yet (i.e. there is no connection to its native counterpart)?<br>
<br>
How do I solve this problem?<br>
<br>
Thanks in advance,<br>
<br>
Jaime Pavlich-Mariscal<br>