Author: kmorin Date: 2009-07-28 16:51:19 +0200 (Tue, 28 Jul 2009) New Revision: 1537 Modified: trunk/guix-compiler/src/main/java/org/nuiton/guix/compiler/GuixCompiler.java Log: Replaced the $ symbol by the _ symbol for the autogenerated fields Modified: trunk/guix-compiler/src/main/java/org/nuiton/guix/compiler/GuixCompiler.java =================================================================== --- trunk/guix-compiler/src/main/java/org/nuiton/guix/compiler/GuixCompiler.java 2009-07-28 10:38:42 UTC (rev 1536) +++ trunk/guix-compiler/src/main/java/org/nuiton/guix/compiler/GuixCompiler.java 2009-07-28 14:51:19 UTC (rev 1537) @@ -301,7 +301,7 @@ String id = ((xpp.getAttributeValue("", "id") != null) ? xpp.getAttributeValue("", "id") - : "$" + tagName + index++); + : "_" + tagName + index++); // create the GuixModelObject representing the tag GuixModelObject mo = new GuixModelObject(id, xpp.getAttributeValue("", "constructor"),