You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by me...@apache.org on 2001/01/17 23:23:25 UTC

cvs commit: jakarta-ant/src/antidote/org/apache/tools/ant/gui/resources buildFileWizard.properties

metasim     01/01/17 14:23:25

  Modified:    src/antidote/org/apache/tools/ant/gui/resources
                        buildFileWizard.properties
  Log:
  Added more panels to build wizard, and created state machine framework.
  
  Revision  Changes    Path
  1.2       +43 -5     jakarta-ant/src/antidote/org/apache/tools/ant/gui/resources/buildFileWizard.properties
  
  Index: buildFileWizard.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/antidote/org/apache/tools/ant/gui/resources/buildFileWizard.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildFileWizard.properties	2001/01/16 18:35:21	1.1
  +++ buildFileWizard.properties	2001/01/17 22:23:24	1.2
  @@ -13,10 +13,10 @@
   ###########################################################
   # Define the steps the comprise the wizard.
   ###########################################################
  -steps=start, setup, finish
  +steps=start, type, setup, compile, jar, javadoc, finish
   
   ###########################################################
  -# Step 1
  +# Step: start
   ###########################################################
   start.editor=org.apache.tools.ant.gui.wizard.InstructionStep
   start.title=Create new build file
  @@ -29,20 +29,58 @@
   Click "Next >>" to proceed.
   
   ###########################################################
  -# Step 2
  +# Step: type
   ###########################################################
   
  +type.editor=org.apache.tools.ant.gui.wizard.build.ProjectTypeStep
  +type.title=Select project type
  +type.description=Select "New" if you want the buile environment \
  +directory structure defined and created for you \
  +in addition to the build file. Select "Import" if you want \
  +a build file created for an existing project.
  +
  +type.isNewLabel=New project
  +type.isImportLabel=Import existing project
  +
  +###########################################################
  +# Step: setup
  +###########################################################
  +
   setup.editor=org.apache.tools.ant.gui.wizard.build.ProjectSetupStep
   setup.title=Setup project
   setup.description=Give the project a name, and select the features you \
   wish to be included in the project file, such as JavaDoc and JAR creation.
   setup.nameLabel=Project Name:
   setup.optionsLabel=Options
  +setup.compile.label=Compiled Java code (.class files)
  +setup.jar.label=Executable JAR file
  +setup.javadoc.label=JavaDoc
  +
  +###########################################################
  +# Step: compile
  +###########################################################
  +compile.title=Setup Java source compilation
  +compile.description=Need help?
  +compile.editor=org.apache.tools.ant.gui.wizard.build.CompileStep
  +
  +###########################################################
  +# Step: jar
  +###########################################################
  +jar.title=Setup executable JAR creation
  +jar.description=Need help?
  +jar.editor=org.apache.tools.ant.gui.wizard.build.JARStep
  +
  +###########################################################
  +# Step: javadoc
  +###########################################################
  +javadoc.title=Setup JavaDoc creation
  +javadoc.description=Need help?
  +javadoc.editor=org.apache.tools.ant.gui.wizard.build.JavaDocStep
   
   ###########################################################
  -# Last step
  +# Step: finish
   ###########################################################
  -finish.editor=org.apache.tools.ant.gui.wizard.InstructionStep
  +finish.editor=org.apache.tools.ant.gui.wizard.build.FinishStep
   finish.title=Complete build file
   finish.description=Click "Finish" to save your build file definition.
   finish.instructions=You are done!\n\nClick "Finish" to complete your new\