java.lang.Object
org.antlr.runtime.tree.BaseTree
org.antlr.runtime.tree.CommonTree
org.mule.runtime.extension.internal.grammar.BaseDsqlNode
All Implemented Interfaces:
org.antlr.runtime.tree.Tree

public class BaseDsqlNode extends org.antlr.runtime.tree.CommonTree
Base implementation for a DsqlNode.
Since:
1.0
  • Field Summary

    Fields inherited from class org.antlr.runtime.tree.CommonTree

    childIndex, parent, startIndex, stopIndex, token

    Fields inherited from class org.antlr.runtime.tree.BaseTree

    children

    Fields inherited from interface org.antlr.runtime.tree.Tree

    INVALID_NODE
  • Constructor Summary

    Constructors
    Constructor
    Description
    BaseDsqlNode(org.antlr.runtime.Token token)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    List<org.mule.runtime.extension.internal.grammar.DsqlNode>
    Return the node value as a String
    int
    Returns the node type needed for tree parsing.

    Methods inherited from class org.antlr.runtime.tree.CommonTree

    dupNode, getCharPositionInLine, getChildIndex, getLine, getParent, getText, getToken, getTokenStartIndex, getTokenStopIndex, getType, isNil, setChildIndex, setParent, setTokenStartIndex, setTokenStopIndex, setUnknownTokenBoundaries, toString

    Methods inherited from class org.antlr.runtime.tree.BaseTree

    addChild, addChildren, createChildrenList, deleteChild, freshenParentAndChildIndexes, freshenParentAndChildIndexes, freshenParentAndChildIndexesDeeply, freshenParentAndChildIndexesDeeply, getAncestor, getAncestors, getChild, getChildCount, getFirstChildWithType, hasAncestor, insertChild, replaceChildren, sanityCheckParentAndChildIndexes, sanityCheckParentAndChildIndexes, setChild, toStringTree

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • BaseDsqlNode

      public BaseDsqlNode(org.antlr.runtime.Token token)
  • Method Details

    • accept

      public void accept(DsqlGrammarVisitor visitor)
    • getChildren

      public List<org.mule.runtime.extension.internal.grammar.DsqlNode> getChildren()
      Overrides:
      getChildren in class org.antlr.runtime.tree.BaseTree
    • getType

      int getType()
      Returns the node type needed for tree parsing.
      Returns:
      an int value representing the type of the node.
    • getText

      String getText()
      Return the node value as a String
      Returns:
      a String instance, representing the value of the node.