<DIV>&gt;&gt;For example, if you want to find out if a class 'Derived' has multiple <BR>&gt;&gt;base classes, then you will specify one Derived pattern object, Derived, <BR>&gt;&gt;and two Base pattern objects: Base1, and Base2. Next connect Base1 and <BR>&gt;&gt;Derived, Base2 and Derived with pattern association representing the <BR>&gt;&gt;inheritance association. Finally, set the 'for all' attribute to false.<BR>&gt;&gt;This rule will find one match if class Derived has multiple base classes <BR>&gt;&gt;of type Base, because each Base pattern object gets bound to a separate <BR>&gt;&gt;unique Base class object in your input model. If Derived has 0 or 1 base <BR>&gt;&gt;class, the rule will find no match.</DIV>  <DIV>&nbsp;</DIV>  <DIV>  <DIV>I set the ForAll attribute to false. But when I have two or more multiple inheritance cases, it still returns one match. I want to get only one match in one case. For example&nbsp;If I have two cases, I want to get two matches. But if I set
 this attribute to false, I always get one match&nbsp;although I get more than one multiple inheritance cases.</DIV>  <DIV>&nbsp;</DIV>I think in the second match base2 object pattern binds the base class which is binded by the base1 object pattern in the first match. And also in the second match base1 object pattern binds the base class which is binded by the base2 object pattern in the first match. Does the GReAt allows cross binding in multiple matches???<BR><BR><BR><B><I>Attila Vizhanyo &lt;viza@isis.vanderbilt.edu&gt;</I></B> wrote:</DIV>  <BLOCKQUOTE class=replbq style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #1010ff 2px solid">The myHouse1.mga model contains 6 Room-s and 7 AdjacentTo connections, 5 <BR>of which has doors.<BR>The rule effectively counts the number of AdjacentTo connections, and <BR>discards those with attribute 'hasDoor' set to false (see the HasDoor <BR>guard). Then for each match, the rule increments the Quantity counter in
 <BR>OrderItem.<BR><BR>GReAT does not have any support for variable pattern cardinality, currently.<BR>But you can get the effect of fixed multiple pattern cardinality by <BR>using multiple pattern objects to specify the cardinality.<BR>The GReAT execution engine binds each pattern variable to a unique <BR>object in the input model.<BR><BR>For example, if you want to find out if a class 'Derived' has multiple <BR>base classes, then you will specify one Derived pattern object, Derived, <BR>and two Base pattern objects: Base1, and Base2. Next connect Base1 and <BR>Derived, Base2 and Derived with pattern association representing the <BR>inheritance association. Finally, set the 'for all' attribute to false.<BR>This rule will find one match if class Derived has multiple base classes <BR>of type Base, because each Base pattern object gets bound to a separate <BR>unique Base class object in your input model. If Derived has 0 or 1 base <BR>class, the rule will find no match.<BR><BR>The
 limitation of this solution is that you cannot refer to the base <BR>classes using pattern objects, except Base1 and Base2, which two are <BR>selected in a non-deterministic manner.<BR>However, you can write UDM code to fetch all bases of class Derived in <BR>an Attribute Mapping block, eg:<BR>set&lt; Base&gt; bases= Derived.super_classes();<BR>subsitute super_classes with the role name of the inheritance association.<BR><BR>--Attila<BR><BR><BR><BR>Arda Göknil wrote:<BR><BR>&gt; &gt;&gt;In the house2order example the MakeOrder3/MakeOrder rule has its<BR>&gt; &gt;&gt;attribute "For All?" set to false, which means that the pattern <BR>&gt; matching<BR>&gt; &gt;&gt;stops after it found the first match. This is why the MakeOrder rule<BR>&gt; &gt;&gt;will find only one room.<BR>&gt; I mean the third rule in the House2Order example. In the second rule <BR>&gt; the 'ForAll' attribute is set to false as you said. But in the third <BR>&gt; rule, the ForAll attribute is not set to false and
 the quantitiy <BR>&gt; attribute of Order is calculated according to the number of the <BR>&gt; matches and the attribute is five, not ten.<BR>&gt; In my model, I have one parent class and two sub classes. When I run <BR>&gt; my multiple inheritance pattern, I expected only one match but there <BR>&gt; are two different matches. When I specify the pattern cardinality of <BR>&gt; child classes as 2..* and the pattern cardinality of parent classes as <BR>&gt; 1, I expect one parent class and at least two child class in one <BR>&gt; match. If there is a second multiple inheritance case in the model, it <BR>&gt; will return in the second match. And in my case when the number of the <BR>&gt; child classes which are inherited from the same class increases, I <BR>&gt; expect the number of the matches not to increase but it also increases.<BR>&gt; Am I missing something?<BR>&gt;<BR>&gt; */Attila Vizhanyo <VIZA@ISIS.VANDERBILT.EDU>/* wrote:<BR>&gt;<BR>&gt; The pattern cardinality attribute
 of pattern objects in GReAT has the<BR>&gt; following semantics:<BR>&gt; - the cardinality attribute set to 0 means negative application<BR>&gt; condition, that is, the pattern matching returns true, if the<BR>&gt; specified<BR>&gt; pattern could not be found in the input graph.<BR>&gt; - any other value than 0 corresponds to 'positive' application<BR>&gt; condition, with no regard to pattern cardinality. The pattern<BR>&gt; matching<BR>&gt; returns true, if the specified pattern can be fou nd in the input<BR>&gt; graph.<BR>&gt;<BR>&gt; Therefore if you specify any non-zero pattern cardinality, the<BR>&gt; pattern<BR>&gt; matching will return with as many matches as many exists for the<BR>&gt; given<BR>&gt; input and pattern graph.<BR>&gt;<BR>&gt; In the house2order example the MakeOrder3/MakeOrder rule has its<BR>&gt; attribute "For All?" set to false, which means that the pattern<BR>&gt; matching<BR>&gt; stops after it found the first match. This is why the MakeOrder rule<BR>&gt;
 will find only one room.<BR>&gt;<BR>&gt; HTH,<BR>&gt; Attila<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; Arda Göknil wrote:<BR>&gt;<BR>&gt; &gt; Hi Daniel,<BR>&gt; &gt; It helped me to fix my problem but now I have another problem. I am<BR>&gt; &gt; trying to implement a basic transformation between UML and Java<BR>&gt; models<BR>&gt; &gt; based on very simple UML and Java meta models. In one of my<BR>&gt; rules, I<BR>&gt; &gt; want to define the pattern of multiple inheritance. In my<BR>&gt; structure, I<BR>&gt; &gt; have one class called parent class whose cardinality pattern is<BR>&gt; 2..*<BR>&gt; &gt; and one class called child class whose cardinality pattern is 1.<BR>&gt; These<BR>&gt; &gt; two classes are connected each other via an connection named<BR>&gt; &gt; Inheritance. But in the match of the rule, I have two matches<BR>&gt; instead<BR>&gt; &gt; of one appropriate match for only one multiple inheritance case.<BR>&gt; For<BR>&gt; &gt; example if the model has a parent class and two
 subclasses, the<BR>&gt; engine<BR>&gt; &gt; returns two matches.<BR>&gt; &gt; I am not sure about the use of cardinality patterns but when I read<BR>&gt; &gt; the Great User Manual, It does not include anything about the<BR>&gt; use of<BR>&gt; &gt; cardinality patterns. In the House2Order example, there is two Room<BR>&gt; &gt; class in the House2Order example and there is only one match<BR>&gt; insted of<BR>&gt; &gt; two matches if there is two room which have a room. Is it abour the<BR>&gt; &gt; cross productions or something else?<BR>&gt; &gt;<BR>&gt; &gt; */Daniel Balasubramanian /* wrote:<BR>&gt; &gt;<BR>&gt; &gt; Hi Arda,<BR>&gt; &gt;<BR>&gt; &gt; That exception means that one of your input models cannot be<BR>&gt; &gt; opened properly, perhap s because you created it with a certain<BR>&gt; &gt; paradigm, and then somehow modified that paradigm. To correct the<BR>&gt; &gt; error, simply open both of the input models in GME, and it will<BR>&gt; &gt; give you a message saying
 something like, "The model is not in the<BR>&gt; &gt; current paradigm, would you like to upgrade?" - say "Yes", and the<BR>&gt; &gt; model will be upgraded to the current paradigm. Save the model,<BR>&gt; &gt; then close GME, and try re-running your transformation. (Be sure<BR>&gt; &gt; to do this for all of your input models)<BR>&gt; &gt;<BR>&gt; &gt; Please let me know if this does not f ix the problem.<BR>&gt; &gt;<BR>&gt; &gt; Thanks,<BR>&gt; &gt; Daniel<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt; -----Original Message-----<BR>&gt; &gt; From: great-users-bounces@list.isis.vanderbilt.edu on behalf of<BR>&gt; &gt; Arda Göknil<BR>&gt; &gt; Sent: Thu 11/24/2005 6:27 AM<BR>&gt; &gt; To: great-users<BR>&gt; &gt; Cc:<BR>&gt; &gt; Subject: [great-users] Re: problem about running the transformation<BR>&gt; &gt; Hi,<BR>&gt; &gt; I configure the path ("C:\Progra m Files\Microsoft Visual<BR>&gt; &gt; Studio\VC98\Bin"). And I can run the samples in GREAT but when I<BR>&gt; &gt; try
 to invoke my example, I get an exception (Exception: Com<BR>&gt; &gt; Exception: The paradigm is not registered). Now what should I do???<BR>&gt; &gt;<BR>&gt; &gt; Attila Vizhanyo wrote:<BR>&gt; &gt;<BR>&gt; &gt; Hi Arda,<BR>&gt; &gt;<BR>&gt; &gt; We have a great-users list, so please direct your great-related<BR>&gt; &gt; questions to great-users@list.isis.vanderbilt.edu.<BR>&gt; &gt;<BR>&gt; &gt; When you run the GReAT Master Interpreter make sure you have a<BR>&gt; &gt; valid config file name (with absolute path) specified in the top<BR>&gt; &gt; of the dialog.<BR>&gt; &gt; Use the “R” button to generate a config file path that points to<BR>&gt; &gt; the transformation folder.<BR>&gt; &gt; &lt; BR&gt;The problem is not necessarily related to the config file<BR>&gt; &gt; opening process.<BR>&gt; &gt; If you use GReAT with VC6, make sure that the location of<BR>&gt; &gt; vcvars32.bat is in path. (e.g. "C:\Program Files\Microsoft Visual<BR>&gt; &gt; Studio\VC98\Bin")<BR>&gt; &gt; If
 you use GReAT with VC71, make sure that the location of<BR>&gt; &gt; vcvars32.bat is in path. (e.g. "C:\Program Files\Microsoft Visual<BR>&gt; &gt; Studio .NET 2003\Common7\Tools”)<BR>&gt; &gt;<BR>&gt; &gt; HTH,<BR>&gt; &gt; Attila<BR>&gt; &gt;<BR>&gt; &gt; -----Original Message-----<BR>&gt; &gt; From: gme-users-bounces@list.isis.vanderbilt.edu<BR>&gt; &gt; [mailto:gme-users-bounces@list.isis.vanderbilt.edu] On Behalf Of<BR>&gt; &gt; Arda Göknil<BR>&gt; &gt; Sent: Wednesday, November 23, 2005 3:34 AM<BR>&gt; &gt; To: gme-users<BR>&gt; &gt; Subject: [gme-users] problem about running the transformation<BR>&gt; &gt;<BR>&gt; &gt; Hi,<BR>&gt; &gt; I am trying to develop a transformation from UML models to Java<BR>&gt; &gt; models by using Great. (It is my first experience in GREAT.)<BR>&gt; &gt; When I interpret the transformation by using GreAt Master<BR>&gt; &gt; Interpreter, there is no problem. But when I try to invoke the<BR>&gt; &gt; Graph Rewrite Engine, a message box appears and
 throws an<BR>&gt; &gt; exception. (Exception: Com Exception: File co uld not be opened).<BR>&gt; &gt; This exception is thrown when the engine is trying to load the<BR>&gt; &gt; NewConfiguration.mga. How can I solve this problem?<BR>&gt; &gt; And also when I try to to invoke the engine on the House2Order<BR>&gt; &gt; sample of Great, there is an error which tells to add /Vc98/bin<BR>&gt; &gt; directory to system path while the engine is trying to load the<BR>&gt; &gt; config.mga file.<BR>&gt; &gt;<BR>&gt; &gt; Arda Goknil<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt; _____<BR>&gt; &gt;<BR>&gt; &gt; To help you stay safe and secure online, we've developed the all<BR>&gt; &gt; new Yahoo! Security Centre.<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt; _____<BR>&gt; &gt;<BR>&gt; &gt; Yahoo! Messenger NEW - crystal clear PC to PC calling worldwide<BR>&gt; &gt; with voicemail<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt; _______________________________________________<BR>&gt; &gt; great-users
 mailing list<BR>&gt; &gt; great-users@list.isis.vanderbilt.edu<BR>&gt; &gt; http://list.isis.vanderbilt.edu/mailman/listinfo/great-users<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; ------------------------------------------------------------------------<BR>&gt; &gt; Yahoo! Model Search<BR>&gt; &gt;<BR>&gt; &gt; - Could you be the next catwalk superstar? Check out the<BR>&gt; competition<BR>&gt; &gt;<BR>&gt; &gt; now<BR>&gt; &gt;<BR>&gt; &gt;------------------------------------------------------------------------<BR>&gt; &gt;<BR>&gt; &gt;_______________________________________________<BR>&gt; &gt;great-users mailing list<BR>&gt; &gt;great-users@list.isis.vanderbilt.edu<BR>&gt; &gt;http://list.isis.vanderbilt.edu/mailman/listinfo/great-users<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; _______________________________________________<BR>&gt; great-users mailing list<BR>&gt; great-users@list.isis.vanderbilt.edu<BR>&gt;
 http://list.isis.vanderbilt.edu/mailman/listinfo/great-users<BR>&gt;<BR>&gt;<BR>&gt; ------------------------------------------------------------------------<BR>&gt; How much free photo storage do you get? Store your holiday snaps for <BR>&gt; FREE with Yahoo! Photos. *Get Yahoo! Photos* <BR>&gt; <HTTP: uk.photos.yahoo.com *http: photos default taglines uk mail us.rd.yahoo.com /><BR>&gt;<BR>&gt;<BR>&gt;------------------------------------------------------------------------<BR>&gt;<BR>&gt;_______________________________________________<BR>&gt;great-users mailing list<BR>&gt;great-users@list.isis.vanderbilt.edu<BR>&gt;http://list.isis.vanderbilt.edu/mailman/listinfo/great-users<BR>&gt; <BR>&gt;<BR>_______________________________________________<BR>great-users mailing list<BR>great-users@list.isis.vanderbilt.edu<BR>http://list.isis.vanderbilt.edu/mailman/listinfo/great-users<BR></BLOCKQUOTE>  <DIV><BR></DIV><p>
                <hr size=1><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><a href="http://us.rd.yahoo.com/mail/uk/taglines/default/messenger/*http://uk.messenger.yahoo.com 
">Yahoo! Messenger</a> 
 <font color="red">NEW</font> - crystal clear PC to PC 
<a href="http://us.rd.yahoo.com/mail/uk/taglines/default/messenger/*http://uk.messenger.yahoo.com 
">calling worldwide with voicemail 
</a></font>