Returns the DOM representation of the XML content. @return null if the content couldn't be parsed
()
| 168 | * @return {@code null} if the content couldn't be parsed |
| 169 | */ |
| 170 | public Document getXmlDocument() { |
| 171 | if (node_ != null) { |
| 172 | return node_.getOwnerDocument(); |
| 173 | } |
| 174 | return null; |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * {@inheritDoc} |