All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.deephaven.lang.generated.ChunkerStatement Maven / Gradle / Ivy

There is a newer version: 0.36.1
Show newest version
/* 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) */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy