From: Vance K. <va...@us...> - 2006-02-08 10:11:45
|
User: vancek Date: 06/02/08 02:11:38 Modified: andromda-ejb3/src/main/resources/META-INF/andromda profile.xml Log: added MAPPED_SUPERCLASS element to stereotype group added RESULT_TYPE_FIRST, RESULT_TYPE_MAX elements to stereotype group removed ENTITY_FINDER_RESULT_TYPE element from tagged value group Revision Changes Path 1.13 +31 -17 cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/profile.xml Index: profile.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/profile.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -w -r1.12 -r1.13 --- profile.xml 6 Feb 2006 04:33:03 -0000 1.12 +++ profile.xml 8 Feb 2006 10:11:38 -0000 1.13 @@ -15,6 +15,16 @@ <value>Entity</value> <appliedOnElement>class</appliedOnElement> </element> + <element name="MAPPED_SUPERCLASS"> + <documentation> + Produces a POJO class annotated as a + mapped/embeddable super class. This + can only be assigned to the root class + in a hierarchy. + </documentation> + <value>MappedSuperclass</value> + <appliedOnElement>class</appliedOnElement> + </element> <element name="SERVICE"> <documentation> Produces a Session EJB facade for the POJO EJB @@ -235,6 +245,27 @@ Entity Attribute </appliedOnElement> </element> + <element name="RESULT_TYPE_FIRST"> + <documentation> + Specifies the finder method parameter + result type to specify the starting index. + </documentation> + <value>FirstResult</value> + <appliedOnElement> + Entity Finder Method Parameter + </appliedOnElement> + </element> + <element name="RESULT_TYPE_MAX"> + <documentation> + Specifies the finder method parameter + result type to specify the max or + limit. + </documentation> + <value>MaxResult</value> + <appliedOnElement> + Entity Finder Method Parameter + </appliedOnElement> + </element> </elementGroup> <elementGroup name="Tagged Values"> <element name="ATTRIBUTE_PERSISTENCE_OPTIONAL"> @@ -395,23 +426,6 @@ <![CDATA[<<Entity>>]]> </appliedOnElement> </element> - <element name="ENTITY_FINDER_RESULT_TYPE"> - <documentation> - Specifies the finder method parameter - result type to specify the limit and/or - starting index. - </documentation> - <value> - @andromda.persistence.finder.result.type - </value> - <appliedOnElement> - Entity Finder Method Parameter - </appliedOnElement> - <allowedValues> - <value default="true">First</value> - <value>Max</value> - </allowedValues> - </element> <element name="TEMPORAL_TYPE"> <documentation> The temporal type tagged value specified on |