1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 /* Generated By:JJTree: Do not edit this line. ASTLambdaExpression.java Version 4.3 */ 5 /* JavaCCOptions:MULTI=true,NODE_USES_PARSER=true,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */ 6 package net.sourceforge.pmd.lang.java.ast; 7 8 public 9 class ASTLambdaExpression extends AbstractJavaAccessNode { 10 public ASTLambdaExpression(int id) { 11 super(id); 12 } 13 14 public ASTLambdaExpression(JavaParser p, int id) { 15 super(p, id); 16 } 17 18 19 /** Accept the visitor. **/ 20 public Object jjtAccept(JavaParserVisitor visitor, Object data) { 21 return visitor.visit(this, data); 22 } 23 } 24 /* JavaCC - OriginalChecksum=e706de031abe9a22c368b7cb52802f1b (do not edit this line) */