Oops, thanks to Miguel for the heads up
git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@3063 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
19
pmd/src/net/sourceforge/pmd/ast/ASTRSIGNEDSHIFT.java
Normal file
19
pmd/src/net/sourceforge/pmd/ast/ASTRSIGNEDSHIFT.java
Normal file
@ -0,0 +1,19 @@
|
||||
/* Generated By:JJTree: Do not edit this line. ASTRSIGNEDSHIFT.java */
|
||||
|
||||
package net.sourceforge.pmd.ast;
|
||||
|
||||
public class ASTRSIGNEDSHIFT extends SimpleNode {
|
||||
public ASTRSIGNEDSHIFT(int id) {
|
||||
super(id);
|
||||
}
|
||||
|
||||
public ASTRSIGNEDSHIFT(JavaParser p, int id) {
|
||||
super(p, id);
|
||||
}
|
||||
|
||||
|
||||
/** Accept the visitor. **/
|
||||
public Object jjtAccept(JavaParserVisitor visitor, Object data) {
|
||||
return visitor.visit(this, data);
|
||||
}
|
||||
}
|
19
pmd/src/net/sourceforge/pmd/ast/ASTRUNSIGNEDSHIFT.java
Normal file
19
pmd/src/net/sourceforge/pmd/ast/ASTRUNSIGNEDSHIFT.java
Normal file
@ -0,0 +1,19 @@
|
||||
/* Generated By:JJTree: Do not edit this line. ASTRUNSIGNEDSHIFT.java */
|
||||
|
||||
package net.sourceforge.pmd.ast;
|
||||
|
||||
public class ASTRUNSIGNEDSHIFT extends SimpleNode {
|
||||
public ASTRUNSIGNEDSHIFT(int id) {
|
||||
super(id);
|
||||
}
|
||||
|
||||
public ASTRUNSIGNEDSHIFT(JavaParser p, int id) {
|
||||
super(p, id);
|
||||
}
|
||||
|
||||
|
||||
/** Accept the visitor. **/
|
||||
public Object jjtAccept(JavaParserVisitor visitor, Object data) {
|
||||
return visitor.visit(this, data);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user