This interface represents all XML AST nodes. They are essentially thin wrappers around the underlying DOM nodes.
| 12 | * wrappers around the underlying DOM nodes. |
| 13 | */ |
| 14 | public interface XmlNode extends Node, AttributeNode { |
| 15 | String BEGIN_LINE = "pmd:beginLine"; |
| 16 | String BEGIN_COLUMN = "pmd:beginColumn"; |
| 17 | String END_LINE = "pmd:endLine"; |
| 18 | String END_COLUMN = "pmd:endColumn"; |
| 19 | |
| 20 | /** |
| 21 | * Provide access to the underlying DOM node. |
| 22 | * |
| 23 | * @return The DOM node. |
| 24 | */ |
| 25 | org.w3c.dom.Node getNode(); |
| 26 | } |
no outgoing calls
no test coverage detected