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/08/30 07:25:45 UTC

cvs commit: jakarta-velocity/src/java/org/apache/velocity/parser ASTElseIfStatement.java

jvanzyl     00/08/29 22:25:44

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