Example usage for Java org.jdom2 DocType fields, constructors, methods, implement or subclass
The text is from its open source code.
DocType(String elementName, String systemID) This will create the DocType with the specified element name and reference to an external DTD. | |
DocType(String elementName, String publicID, String systemID) This will create the DocType with the specified element name and a reference to an external DTD. | |
DocType(String elementName) This will create the DocType with the specified element name |
String | getElementName() This will retrieve the element name being constrained. |
String | getPublicID() This will retrieve the public ID of an externally referenced DTD, or an empty String if none is referenced. |
String | getSystemID() This will retrieve the system ID of an externally referenced DTD, or an empty String if none is referenced. |