From: Vance K. <va...@us...> - 2006-01-19 06:49:44
|
User: vancek Date: 06/01/18 22:49:38 Modified: andromda-ejb3/src/main/resources/META-INF/andromda cartridge.xml Log: add requiresGeneralizationMapping to false condition for creation of Entity.vsl Revision Changes Path 1.8 +4 -2 cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/cartridge.xml Index: cartridge.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/cartridge.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -w -r1.7 -r1.8 --- cartridge.xml 18 Jan 2006 08:49:51 -0000 1.7 +++ cartridge.xml 19 Jan 2006 06:49:38 -0000 1.8 @@ -35,8 +35,9 @@ </template> <!-- - Do not generated the entity implementation class if marked - to be an embeddable super class + Do not generate the entity implementation class if marked + to be an embeddable super class OR is a subclass of an + entity inheritance hierarchy. --> <template path="templates/ejb3/Entity.vsl" @@ -47,6 +48,7 @@ <modelElement> <type name="org.andromda.cartridges.ejb3.metafacades.EJB3EntityFacade"> <property name="embeddableSuperclass">false</property> + <property name="requiresGeneralizationMapping">false</property> </type> </modelElement> </modelElements> |