Package org.antlr.runtime.debug
Class RemoteDebugEventSocketListener.ProxyTree
- java.lang.Object
-
- org.antlr.runtime.tree.BaseTree
-
- org.antlr.runtime.debug.RemoteDebugEventSocketListener.ProxyTree
-
- All Implemented Interfaces:
Tree
- Enclosing class:
- RemoteDebugEventSocketListener
public static class RemoteDebugEventSocketListener.ProxyTree extends BaseTree
-
-
Field Summary
Fields Modifier and Type Field Description intcharPosintIDintlinejava.lang.StringtextinttokenIndexinttype-
Fields inherited from interface org.antlr.runtime.tree.Tree
INVALID_NODE
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TreedupNode()java.lang.StringgetText()intgetTokenStartIndex()What is the smallest token index (indexing from 0) for this node and its children?intgetTokenStopIndex()What is the largest token index (indexing from 0) for this node and its children?intgetType()Return a token type; needed for tree parsingvoidsetTokenStartIndex(int index)voidsetTokenStopIndex(int index)java.lang.StringtoString()Override to say how a node (not a tree) should look as text-
Methods inherited from class org.antlr.runtime.tree.BaseTree
addChild, addChildren, createChildrenList, deleteChild, freshenParentAndChildIndexes, freshenParentAndChildIndexes, freshenParentAndChildIndexesDeeply, freshenParentAndChildIndexesDeeply, getAncestor, getAncestors, getCharPositionInLine, getChild, getChildCount, getChildIndex, getChildren, getFirstChildWithType, getLine, getParent, hasAncestor, insertChild, isNil, replaceChildren, sanityCheckParentAndChildIndexes, sanityCheckParentAndChildIndexes, setChild, setChildIndex, setParent, toStringTree
-
-
-
-
Method Detail
-
getTokenStartIndex
public int getTokenStartIndex()
Description copied from interface:TreeWhat is the smallest token index (indexing from 0) for this node and its children?
-
setTokenStartIndex
public void setTokenStartIndex(int index)
-
getTokenStopIndex
public int getTokenStopIndex()
Description copied from interface:TreeWhat is the largest token index (indexing from 0) for this node and its children?
-
setTokenStopIndex
public void setTokenStopIndex(int index)
-
dupNode
public Tree dupNode()
-
getType
public int getType()
Description copied from interface:TreeReturn a token type; needed for tree parsing
-
getText
public java.lang.String getText()
-
-