1 /* Generated By:JJTree: Do not edit this line. ASTPrimarySuffix.java */
2
3 package net.sourceforge.pmd.ast;
4
5 public class ASTPrimarySuffix extends SimpleNode {
6 public ASTPrimarySuffix(int id) {
7 super(id);
8 }
9
10 public ASTPrimarySuffix(JavaParser p, int id) {
11 super(p, id);
12 }
13
14 private boolean isArguments;
15
16 public void setIsArguments() {
17 this.isArguments = true;
18 }
19
20 public boolean isArguments() {
21 return this.isArguments;
22 }
23
24 /*** Accept the visitor. **/
25 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
26 return visitor.visit(this, data);
27 }
28 }
This page was automatically generated by Maven