AstUnaryPlusExpression.java :  » Template-Engine » jxp » org » onemind » jxp » parser » Java Open Source

Java Open Source » Template Engine » jxp 
jxp » org » onemind » jxp » parser » AstUnaryPlusExpression.java
/* Generated By:JJTree: Do not edit this line. AstUnaryPlusExpression.java */

package org.onemind.jxp.parser;

public class AstUnaryPlusExpression extends SimpleNode {
  public AstUnaryPlusExpression(int id) {
    super(id);
  }

  public AstUnaryPlusExpression(JxpParser p, int id) {
    super(p, id);
  }


  /** Accept the visitor. **/
  public Object jjtAccept(JxpParserVisitor visitor, Object data) throws Exception {
    return visitor.visit(this, data);
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.