Class DetailAST
- java.lang.Object
-
- antlr.BaseAST
-
- antlr.CommonAST
-
- antlr.CommonASTWithHiddenTokens
-
- com.puppycrawl.tools.checkstyle.api.DetailAST
-
- All Implemented Interfaces:
antlr.collections.AST,java.io.Serializable
public final class DetailAST extends antlr.CommonASTWithHiddenTokensAn extension of the CommonAST that records the line and column number.- See Also:
- ANTLR Website, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DetailAST()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddChild(antlr.collections.AST ast)voidaddNextSibling(DetailAST ast)Add next sibling.voidaddPreviousSibling(DetailAST ast)Add previous sibling.booleanbranchContains(int type)Checks if this branch of the parse tree contains a token of the provided type.DetailASTfindFirstToken(int type)Returns the first child token that makes a specified type.intgetChildCount()Returns the number of child nodes one level below this node.intgetChildCount(int type)Returns the number of direct child tokens that have the specified type.intgetColumnNo()Gets column number.DetailASTgetFirstChild()DetailASTgetLastChild()Gets the last child node.intgetLineNo()Gets line number.DetailASTgetNextSibling()DetailASTgetParent()Returns the parent token.DetailASTgetPreviousSibling()Returns the previous sibling or null if no such sibling exists.voidinitialize(antlr.collections.AST ast)voidinitialize(antlr.Token tok)voidsetColumnNo(int columnNo)Set column number.voidsetFirstChild(antlr.collections.AST ast)voidsetLineNo(int lineNo)Set line number.voidsetNextSibling(antlr.collections.AST ast)java.lang.StringtoString()-
Methods inherited from class antlr.BaseAST
decode, encode, equals, equalsList, equalsListPartial, equalsTree, equalsTreePartial, findAll, findAllPartial, getColumn, getLine, getNumberOfChildren, getTokenNames, removeChildren, setVerboseStringConversion, toStringList, toStringTree, xmlSerialize, xmlSerializeNode, xmlSerializeRootClose, xmlSerializeRootOpen
-
-
-
-
Method Detail
-
initialize
public void initialize(antlr.Token tok)
- Specified by:
initializein interfaceantlr.collections.AST- Overrides:
initializein classantlr.CommonASTWithHiddenTokens
-
initialize
public void initialize(antlr.collections.AST ast)
- Specified by:
initializein interfaceantlr.collections.AST- Overrides:
initializein classantlr.CommonASTWithHiddenTokens
-
setFirstChild
public void setFirstChild(antlr.collections.AST ast)
- Specified by:
setFirstChildin interfaceantlr.collections.AST- Overrides:
setFirstChildin classantlr.BaseAST
-
setNextSibling
public void setNextSibling(antlr.collections.AST ast)
- Specified by:
setNextSiblingin interfaceantlr.collections.AST- Overrides:
setNextSiblingin classantlr.BaseAST
-
addPreviousSibling
public void addPreviousSibling(DetailAST ast)
Add previous sibling.- Parameters:
ast- DetailAST object.
-
addNextSibling
public void addNextSibling(DetailAST ast)
Add next sibling.- Parameters:
ast- DetailAST object.
-
addChild
public void addChild(antlr.collections.AST ast)
- Specified by:
addChildin interfaceantlr.collections.AST- Overrides:
addChildin classantlr.BaseAST
-
getChildCount
public int getChildCount()
Returns the number of child nodes one level below this node. That is is does not recurse down the tree.- Returns:
- the number of child nodes
-
getChildCount
public int getChildCount(int type)
Returns the number of direct child tokens that have the specified type.- Parameters:
type- the token type to match- Returns:
- the number of matching token
-
getParent
public DetailAST getParent()
Returns the parent token.- Returns:
- the parent token
-
getLineNo
public int getLineNo()
Gets line number.- Returns:
- the line number
-
setLineNo
public void setLineNo(int lineNo)
Set line number.- Parameters:
lineNo- line number.
-
getColumnNo
public int getColumnNo()
Gets column number.- Returns:
- the column number
-
setColumnNo
public void setColumnNo(int columnNo)
Set column number.- Parameters:
columnNo- column number.
-
getLastChild
public DetailAST getLastChild()
Gets the last child node.- Returns:
- the last child node
-
branchContains
public boolean branchContains(int type)
Checks if this branch of the parse tree contains a token of the provided type.- Parameters:
type- a TokenType- Returns:
- true if and only if this branch (including this node)
contains a token of type
type.
-
getPreviousSibling
public DetailAST getPreviousSibling()
Returns the previous sibling or null if no such sibling exists.- Returns:
- the previous sibling or null if no such sibling exists.
-
findFirstToken
public DetailAST findFirstToken(int type)
Returns the first child token that makes a specified type.- Parameters:
type- the token type to match- Returns:
- the matching token, or null if no match
-
toString
public java.lang.String toString()
- Specified by:
toStringin interfaceantlr.collections.AST- Overrides:
toStringin classantlr.BaseAST
-
getNextSibling
public DetailAST getNextSibling()
- Specified by:
getNextSiblingin interfaceantlr.collections.AST- Overrides:
getNextSiblingin classantlr.BaseAST
-
getFirstChild
public DetailAST getFirstChild()
- Specified by:
getFirstChildin interfaceantlr.collections.AST- Overrides:
getFirstChildin classantlr.BaseAST
-
-