dion        02/05/12 21:49:05

  Modified:    src/java/org/apache/maven/java BaseVisitor.java
  Log:
  no message
  
  Revision  Changes    Path
  1.10      +16 -16    
jakarta-turbine-maven/src/java/org/apache/maven/java/BaseVisitor.java
  
  Index: BaseVisitor.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/java/BaseVisitor.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- BaseVisitor.java  13 May 2002 04:47:48 -0000      1.9
  +++ BaseVisitor.java  13 May 2002 04:49:05 -0000      1.10
  @@ -146,14 +146,14 @@
   
   /**
    * Base class for tools interested in processing java source code
  - * @version $Id: BaseVisitor.java,v 1.9 2002/05/13 04:47:48 dion Exp $
  + * @version $Id: BaseVisitor.java,v 1.10 2002/05/13 04:49:05 dion Exp $
    * @author Jason van Zyl
    */
   public class BaseVisitor implements JavaParserVisitor
   {
       /** Call back for processing nodes as they are parsed.
        * @param node the node being parsed
  -     * @data information about the node
  +     * @param data information about the node
        * @return the default visit value
        */
       public Object visit(SimpleNode node, Object data)
  @@ -163,7 +163,7 @@
   
       /** Call back for processing a compilation unit (e.g. entire file) 
        * @param node the node being parsed
  -     * @data information about the node
  +     * @param data information about the node
        * @return the default visit value
        */
       public Object visit(ASTCompilationUnit node, Object data)
  @@ -173,7 +173,7 @@
   
       /** Call back for processing a package declaration
        * @param node the node being parsed
  -     * @data information about the node
  +     * @param data information about the node
        * @return the default visit value
        */
       public Object visit(ASTPackageDeclaration node, Object data)
  @@ -183,7 +183,7 @@
   
       /** Call back for processing an import statement
        * @param node the node being parsed
  -     * @data information about the node
  +     * @param data information about the node
        * @return the default visit value
        */
       public Object visit(ASTImportDeclaration node, Object data)
  @@ -193,7 +193,7 @@
   
       /** Call back for processing a type (e.g. class or interface) declaration
        * @param node the node being parsed
  -     * @data information about the node
  +     * @param data information about the node
        * @return the default visit value
        */
       public Object visit(ASTTypeDeclaration node, Object data)
  @@ -203,7 +203,7 @@
   
       /** Call back for processing a class declaration
        * @param node the node being parsed
  -     * @data information about the node
  +     * @param data information about the node
        * @return the default visit value
        */
       public Object visit(ASTClassDeclaration node, Object data)
  @@ -219,7 +219,7 @@
   
       /** Call back for processing the class body
        * @param node the node being parsed
  -     * @data information about the node
  +     * @param data information about the node
        * @return the default visit value
        */
       public Object visit(ASTClassBody node, Object data)
  @@ -229,7 +229,7 @@
   
       /** Call back for processing an inner class delcaration
        * @param node the node being parsed
  -     * @data information about the node
  +     * @param data information about the node
        * @return the default visit value
        */
       public Object visit(ASTNestedClassDeclaration node, Object data)
  @@ -239,7 +239,7 @@
   
       /** Call back for processing an inner class' body
        * @param node the node being parsed
  -     * @data information about the node
  +     * @param data information about the node
        * @return the default visit value
        */
       public Object visit(ASTClassBodyDeclaration node, Object data)
  @@ -254,7 +254,7 @@
   
       /** Call back for processing an interface declaration
        * @param node the node being parsed
  -     * @data information about the node
  +     * @param data information about the node
        * @return the default visit value
        */
       public Object visit(ASTInterfaceDeclaration node, Object data)
  @@ -264,7 +264,7 @@
   
       /** Call back for processing an 'inner interface' declaration
        * @param node the node being parsed
  -     * @data information about the node
  +     * @param data information about the node
        * @return the default visit value
        */
       public Object visit(ASTNestedInterfaceDeclaration node, Object data)
  @@ -284,7 +284,7 @@
   
       /** Call back for processing a field declaration
        * @param node the node being parsed
  -     * @data information about the node
  +     * @param data information about the node
        * @return the default visit value
        */
       public Object visit(ASTFieldDeclaration node, Object data)
  @@ -309,7 +309,7 @@
   
       /** Call back for processing an array initializer
        * @param node the node being parsed
  -     * @data information about the node
  +     * @param data information about the node
        * @return the default visit value
        */
       public Object visit(ASTArrayInitializer node, Object data)
  @@ -319,7 +319,7 @@
   
       /** Call back for processing a method declaration
        * @param node the node being parsed
  -     * @data information about the node
  +     * @param data information about the node
        * @return the default visit value
        */
       public Object visit(ASTMethodDeclaration node, Object data)
  @@ -344,7 +344,7 @@
   
       /** Call back for processing a Constructor declaration
        * @param node the node being parsed
  -     * @data information about the node
  +     * @param data information about the node
        * @return the default visit value
        */
       public Object visit(ASTConstructorDeclaration node, Object data)
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to