View Javadoc
1   /* Generated by: JJTree: Do not edit this line. ASTExtendedLiteral.java Version 1.1 */
2   /* ParserGeneratorCCOptions:MULTI=true,NODE_USES_PARSER=false,VISITOR=true,TRACK_TOKENS=true,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */
3   package org.apache.commons.jexl3.parser;
4   
5   public
6   class ASTExtendedLiteral extends JexlNode {
7     public ASTExtendedLiteral(int id) {
8       super(id);
9     }
10  
11    public ASTExtendedLiteral(Parser p, int id) {
12      super(p, id);
13    }
14  
15  
16    /** Accept the visitor. **/
17    public Object jjtAccept(ParserVisitor visitor, Object data) {
18      return
19      visitor.visit(this, data);
20    }
21  }
22  /* ParserGeneratorCC - OriginalChecksum=32ae9984ba69f72b0cf1b4122ec9946f (do not edit this line) */