From: Chris M. <cm...@us...> - 2007-10-08 18:59:58
|
User: cmicali Date: 07/10/08 11:59:37 Modified: andromda-cs/src/main/resources/templates/cs ValueObject.vsl Log: - Fixed bug output property names when calling base constructors Revision Changes Path 1.8 +2 -2 cartridges/andromda-cs/src/main/resources/templates/cs/ValueObject.vsl Index: ValueObject.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-cs/src/main/resources/templates/cs/ValueObject.vsl,v retrieving revision 1.7 retrieving revision 1.8 diff -u -w -r1.7 -r1.8 --- ValueObject.vsl 5 Oct 2007 15:55:34 -0000 1.7 +++ ValueObject.vsl 8 Oct 2007 18:59:36 -0000 1.8 @@ -75,7 +75,7 @@ #if($class.generalization) : base(#set ($comma = "") #foreach ($property in $class.generalization.allProperties) -${comma}${property.name}## no newline +${comma}${stringUtils.upperCamelCaseName($property.name)}## no newline #set ($comma = ", ") #end ) @@ -95,7 +95,7 @@ #if($class.generalization) : base(#set ($comma = "") #foreach ($property in $class.generalization.allProperties) -${comma}other${class.name}.${property.name}## no newline +${comma}other${class.name}.${stringUtils.upperCamelCaseName($property.name)}## no newline #set ($comma = ", ") #end ) |