MCPcopy Index your code
hub / github.com/HtmlUnit/htmlunit / isBodyParsed

Method isBodyParsed

src/main/java/org/htmlunit/html/DomNode.java:1090–1092  ·  view source on GitHub ↗

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.

()

Source from the content-addressed store, hash-verified

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

Callers 1

fireAdditionMethod · 0.80

Calls 2

getStartLineNumberMethod · 0.95
getEndLineNumberMethod · 0.95

Tested by

no test coverage detected