Indicates if the current node is being parsed. This means that the opening tag has already been parsed but not the body and end tag.
()
| 1088 | * parsed but not the body and end tag. |
| 1089 | */ |
| 1090 | private boolean isBodyParsed() { |
| 1091 | return getStartLineNumber() != -1 && getEndLineNumber() == -1; |
| 1092 | } |
| 1093 | |
| 1094 | /** |
| 1095 | * Recursively sets the new page on the node and its children |
no test coverage detected