User: vancek
Date: 06/01/02 17:04:09
Modified: andromda-ejb3/src/main/resources/templates/ejb3
EntityImpl.vsl
Log:
moved getAttributesAsList from utils to session metafacade
Revision Changes Path
1.2 +2 -2 cartridges/andromda-ejb3/src/main/resources/templates/ejb3/EntityImpl.vsl
Index: EntityImpl.vsl
===================================================================
RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/templates/ejb3/EntityImpl.vsl,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -r1.1 -r1.2
--- EntityImpl.vsl 28 Dec 2005 00:32:55 -0000 1.1
+++ EntityImpl.vsl 3 Jan 2006 01:04:09 -0000 1.2
@@ -47,9 +47,9 @@
* @param $attribute.name Value for the ${attribute.name} property
#end
*/
- public ${entity.entityImplementationName}($transform.getAttributesAsList($allAttributes, true, true))
+ public ${entity.entityImplementationName}($entity.getAttributesAsList($allAttributes, true, true))
{
- super($transform.getAttributesAsList($allAttributes, false, true));
+ super($entity.getAttributesAsList($allAttributes, false, true));
}
#foreach ($operation in $entity.getCreateMethods(true))
|