public class ParseNode extends Object
| Constructor and Description |
|---|
ParseNode(int startIndex,
int endIndex,
List<ParseNode> children,
Matcher matcher) |
ParseNode(int startIndex,
int endIndex,
Matcher matcher)
Leaf node.
|
| Modifier and Type | Method and Description |
|---|---|
List<ParseNode> |
getChildren() |
int |
getEndIndex()
Be aware that element of input with this index is not included into this node.
|
Matcher |
getMatcher() |
int |
getStartIndex() |
public ParseNode(int startIndex,
int endIndex,
Matcher matcher)
Copyright © 2009–2018 SonarSource. All rights reserved.