[jboss-cvs] jboss-seam/seam-gen ...
Gavin King
gavin.king at jboss.com
Fri Feb 9 17:49:37 EST 2007
User: gavin
Date: 07/02/09 17:49:36
Modified: seam-gen build.xml
Log:
basic working support for composite keys
Revision Changes Path
1.71 +18 -9 jboss-seam/seam-gen/build.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/seam-gen/build.xml,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -b -r1.70 -r1.71
--- build.xml 4 Feb 2007 08:48:35 -0000 1.70
+++ build.xml 9 Feb 2007 22:49:36 -0000 1.71
@@ -793,31 +793,40 @@
<hbm2java jdk5="true" ejb3="true" destdir="${project.home}/src"/>
<hbmtemplate filepattern="{class-name}List.xhtml"
template="view/list.xhtml.ftl"
- destdir="${project.home}/view"/>
+ destdir="${project.home}/view"
+ foreach="entity"/>
<hbmtemplate filepattern="{class-name}.xhtml"
template="view/view.xhtml.ftl"
- destdir="${project.home}/view"/>
+ destdir="${project.home}/view"
+ foreach="entity"/>
<hbmtemplate filepattern="{class-name}.page.xml"
template="view/view.page.xml.ftl"
- destdir="${project.home}/view"/>
+ destdir="${project.home}/view"
+ foreach="entity"/>
<hbmtemplate filepattern="{class-name}Edit.xhtml"
template="view/edit.xhtml.ftl"
- destdir="${project.home}/view"/>
+ destdir="${project.home}/view"
+ foreach="entity"/>
<hbmtemplate filepattern="{class-name}Edit.page.xml"
template="view/edit.page.xml.ftl"
- destdir="${project.home}/view"/>
+ destdir="${project.home}/view"
+ foreach="entity"/>
<hbmtemplate filepattern="{package-name}/{class-name}List.java"
template="src/EntityList.java.ftl"
- destdir="${project.home}/src"/>
+ destdir="${project.home}/src"
+ foreach="entity"/>
<hbmtemplate filepattern="{class-name}List.page.xml"
template="view/list.page.xml.ftl"
- destdir="${project.home}/view"/>
+ destdir="${project.home}/view"
+ foreach="entity"/>
<hbmtemplate filepattern="{package-name}/{class-name}Home.java"
template="src/EntityHome.java.ftl"
- destdir="${project.home}/src"/>
+ destdir="${project.home}/src"
+ foreach="entity"/>
<hbmtemplate filepattern="menu.xhtml"
template="view/layout/menu.xhtml.ftl"
- destdir="${project.home}/view/layout"/>
+ destdir="${project.home}/view/layout"
+ foreach="entity"/>
</hibernate>
<taskdef name="javaformatter"
More information about the jboss-cvs-commits
mailing list