INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK. Parses the specified HTML source code, appending the resulting content at the specified target location. @param source the HTML code extract to parse @throws IOException in case of error @throws
(final String source)
| 1136 | * @throws SAXException in case of error |
| 1137 | */ |
| 1138 | public void parseHtmlSnippet(final String source) throws SAXException, IOException { |
| 1139 | final WebClient webClient = getPage().getWebClient(); |
| 1140 | webClient.getPageCreator().getHtmlParser().parseFragment(webClient, this, this, source, false); |
| 1141 | } |
| 1142 | |
| 1143 | /** |
| 1144 | * Removes this node from all relationships with other nodes. |
no test coverage detected