Java org.jdom2 DocType fields, constructors, methods, implement or subclass

Example usage for Java org.jdom2 DocType fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.jdom2 DocType.

The text is from its open source code.

Constructor

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

Method

StringgetElementName()
This will retrieve the element name being constrained.
StringgetPublicID()
This will retrieve the public ID of an externally referenced DTD, or an empty String if none is referenced.
StringgetSystemID()
This will retrieve the system ID of an externally referenced DTD, or an empty String if none is referenced.