diff --git a/docs/antlr.html b/docs/antlr.html new file mode 100644 index 000000000..de10bb896 --- /dev/null +++ b/docs/antlr.html @@ -0,0 +1,72 @@ + + + + +ANTLR Task + + + + +

ANTLR

+

Description

+

+ Invokes the ANTLR Translator generator + on a grammar file. +

+

+ To use the ANTLR task, set the target attribute to the name of the + grammar file to process. Optionally, you can also set the + outputdirectory to write the generated file to a specific directory. + Otherwise ANTLR writes the generated files to the directory containing + the grammar file. +

+

+ This task only invokes ANTLR if the grammar file is newer than the generated + files. +

+ +

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
targetThe grammar file to process.Yes
outputdirectory + The directory to write the generated files to. If not set, the files + are written to the directory containing the grammar file. + No
forkRun ANTLR in a separate VM.No, default is "off"
dirThe directory to invoke the VM in. (ignored if + fork is disabled)No
+

Example

+
+<antlr
+    target="etc/java.g"
+    outputdirectory="build/src"
+/>
+
+

+ This invokes ANTLR on grammar file etc/java.g, writing the generated + files to build/src. +

+
+ diff --git a/docs/index.html b/docs/index.html index c92d3f62a..6fe258afb 100644 --- a/docs/index.html +++ b/docs/index.html @@ -20,13 +20,14 @@
  • Arnout J. Kuiper (ajkuiper@wxs.nl)
  • Conor MacNeill (conor@cortexebusiness.com.au)
  • Stefano Mazzocchi (stefano@apache.org)
  • +
  • Erik Meade (emeade@geekfarm.org)
  • Sam Ruby (rubys@us.ibm.com)
  • Nico Seessle (nico@seessle.de)
  • Roger Vaughn (rvaughn@seaconinc.com)
  • Dave Walend (dwalend@cs.tufts.edu)
  • -

    Version 1.3 - 2000/11/10

    +

    Version 1.3 - 2000/11/14


    Table of Contents

    @@ -4536,8 +4537,10 @@ it had been located at htdocs/manual/ChangeLog.txt.


    Optional tasks


    Cab

    diff --git a/docs/javacc.html b/docs/javacc.html index 85216a485..511dd343c 100644 --- a/docs/javacc.html +++ b/docs/javacc.html @@ -160,7 +160,7 @@
     <javacc 
         target="src/Parser.jj" 
    -    outputdirectory"build/src"
    +    outputdirectory="build/src"
         javacchome="c:/program files/JavaCC" 
         static="true"
     />