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. ASTEqualityExpression.java */ 5 6 package net.sourceforge.pmd.lang.java.ast; 7 8 public class ASTEqualityExpression extends AbstractJavaTypeNode { 9 public ASTEqualityExpression(int id) { 10 super(id); 11 } 12 13 public ASTEqualityExpression(JavaParser p, int id) { 14 super(p, id); 15 } 16 17 /** 18 * Accept the visitor. * 19 */ 20 public Object jjtAccept(JavaParserVisitor visitor, Object data) { 21 return visitor.visit(this, data); 22 } 23 24 }