io.deephaven.lang.generated.ChunkerNew 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. ChunkerNew.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 io.deephaven.lang.api.AbstractChunkerInvokable;
import io.deephaven.lang.api.IsScope;
public
class ChunkerNew extends AbstractChunkerInvokable implements IsScope {
private String name;
public ChunkerNew(int id) {
super(id);
}
public ChunkerNew(Chunker p, int id) {
super(p, id);
}
/** Accept the visitor. **/
public Object jjtAccept(ChunkerVisitor visitor, Object data) {
return
visitor.visitChunkerNew(this, data);
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public boolean isAutocompleteTerminal() {
return true;
}
}
/* JavaCC - OriginalChecksum=7f728d6a4910728f7d5f4e50eb0cbd9b (do not edit this line) */