Returns the text content of the root token. Uses getRoot(true) to ensure a non-null root. @return the text of the root token
()
| 314 | * @return the text of the root token |
| 315 | */ |
| 316 | public String getRootText() { |
| 317 | Token root = getRoot(true); |
| 318 | return root.getText(); |
| 319 | } |
| 320 | |
| 321 | /** |
| 322 | * Returns a human-readable description of this node's semantic meaning. |