[jboss-cvs] jboss-seam/seam-gen ...

Gavin King gavin.king at jboss.com
Fri Nov 3 12:38:58 EST 2006


  User: gavin   
  Date: 06/11/03 12:38:58

  Modified:    seam-gen      README USAGE build.xml
  Removed:     seam-gen      seam.bat seam.sh
  Log:
  more on seam-gen
  
  Revision  Changes    Path
  1.10      +5 -5      jboss-seam/seam-gen/README
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: README
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/seam-gen/README,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- README	3 Nov 2006 04:27:44 -0000	1.9
  +++ README	3 Nov 2006 17:38:58 -0000	1.10
  @@ -1,8 +1,8 @@
   NAME
  -   seam - execute seam code generation. There is a seam.bat(windows) and 
  -   seam.sh(linux/unix) that make calls to ANT targets for seam project setup 
  -   and seam source code generation commands. You must have Ant 1.6 and
  -   jbossAS with EJB3 installed.
  +   seam - execute seam code generation. There are seam.bat (Windows) and 
  +   seam (Linux/Unix) scripts that make calls to Ant targets for seam project 
  +   setup and seam source code generation commands. You must have Ant 1.6 and
  +   JBoss AS with EJB3 installed.
        
   SYNOPSIS
      seam COMMAND PROJECT_NAME OPTIONS...
  
  
  
  1.3       +1 -1      jboss-seam/seam-gen/USAGE
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: USAGE
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/seam-gen/USAGE,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  
  
  
  1.16      +6 -6      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.15
  retrieving revision 1.16
  diff -u -b -r1.15 -r1.16
  --- build.xml	3 Nov 2006 04:27:44 -0000	1.15
  +++ build.xml	3 Nov 2006 17:38:58 -0000	1.16
  @@ -214,7 +214,7 @@
   	</target>
   
   	<target name="new-stateful-action">
  -		<echo message="Creating a stateful session bean Seam component with an action method" />
  +		<echo message="Creating a new stateful session bean component with an action method" />
   		<java classname="org.jboss.seam.tool.SeamGenCommandLine">
   			<arg value="new-stateful-action" />
   			<arg value="${project.name}" />
  @@ -228,7 +228,7 @@
   	</target>
   
   	<target name="new-stateless-action">
  -		<echo message="Creating a stateless session bean Seam component with an action method" />
  +		<echo message="Creating a new stateless session bean component with an action method" />
   		<java classname="org.jboss.seam.tool.SeamGenCommandLine">
   			<arg value="new-stateless-action" />
   			<arg value="${project.name}" />
  @@ -242,7 +242,7 @@
   	</target>
   
   	<target name="new-conversation">
  -		<echo message="Create a @Conversational stateful session bean Seam component with @Begin and @End methods" />
  +		<echo message="Creating a new stateful session bean component with @Begin and @End methods" />
   		<java classname="org.jboss.seam.tool.SeamGenCommandLine">
   			<arg value="new-conversation" />
   			<arg value="${project.name}" />
  @@ -256,7 +256,7 @@
   	</target>
   
   	<target name="new-entity">
  -		<echo message="Create a new entity bean with a couple attributes" />
  +		<echo message="Creating a new entity bean, with home and list components" />
   		<java classname="org.jboss.seam.tool.SeamGenCommandLine">
   			<arg value="new-entity" />
   			<arg value="${project.name}" />
  @@ -271,7 +271,7 @@
   	</target>
   
   	<target name="new-mdb">
  -		<echo message="Create a new mdb bean with a couple attributes" />
  +		<echo message="Creating a new message driven bean" />
   		<input addproperty="destination.type" message="Enter destination type 'Queue' or 'Topic':" validargs="Queue,Topic" />
   		<input addproperty="destination" message="Enter destination:" />
   		<java classname="org.jboss.seam.tool.SeamGenCommandLine">
  @@ -294,7 +294,7 @@
   	</target>
   
   	<target name="help">
  -		<echo message="Refer to README doc" />
  +		<echo message="Refer to README doc, or type `seam help'" />
   	</target>
   
   </project>
  
  
  



More information about the jboss-cvs-commits mailing list