io.deephaven.lang.generated.ChunkerStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-open-api-lang-parser Show documentation
Show all versions of deephaven-open-api-lang-parser Show documentation
The 'open-api-lang-parser' project
/* Generated By:JJTree: Do not edit this line. ChunkerStatement.java Version 7.0 */
/* JavaCCOptions:MULTI=true,NODE_USES_PARSER=true,VISITOR=true,TRACK_TOKENS=true,NODE_PREFIX=Chunker,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */
package io.deephaven.lang.generated;
import java.util.List;
public
class ChunkerStatement extends SimpleNode {
private List annotations;
public ChunkerStatement(int id) {
super(id);
}
public ChunkerStatement(Chunker p, int id) {
super(p, id);
}
/** Accept the visitor. **/
public Object jjtAccept(ChunkerVisitor visitor, Object data) {
return
visitor.visitChunkerStatement(this, data);
}
@Override
public String toString(String prefix) {
return super.toString(prefix);
}
public List getAnnotations() {
return annotations;
}
public void setAnnotations(List annotations) {
this.annotations = annotations;
}
@Override
public boolean containsIndex(int i) {
return super.containsIndex(i) || i == jjtGetLastToken().endIndex;
}
}
/* JavaCC - OriginalChecksum=a9bf4b3bde42a591c70a860f1da1e84b (do not edit this line) */