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