You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by jv...@locus.apache.org on 2000/09/22 01:38:16 UTC

cvs commit: jakarta-velocity/src/java/org/apache/velocity/processor/javacc/parser ASTCommentBlock.java

jvanzyl     00/09/21 16:38:16

  Added:       src/java/org/apache/velocity/processor/javacc/parser
                        ASTCommentBlock.java
  Log:
  - multiline comment node.
  
  Revision  Changes    Path
  1.1                  jakarta-velocity/src/java/org/apache/velocity/processor/javacc/parser/ASTCommentBlock.java
  
  Index: ASTCommentBlock.java
  ===================================================================
  /* Generated By:JJTree: Do not edit this line. ASTCommentBlock.java */
  
  package org.apache.velocity.processor.javacc.parser;
  
  public class ASTCommentBlock extends SimpleNode {
    public ASTCommentBlock(int id) {
      super(id);
    }
  
    public ASTCommentBlock(Parser p, int id) {
      super(p, id);
    }
  
  
    /** Accept the visitor. **/
    public Object jjtAccept(ParserVisitor visitor, Object data) {
      return visitor.visit(this, data);
    }
  }