|
JDOM 2.0.2 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DocType | |
---|---|
org.jdom2 | Classes representing the components of an XML document. |
org.jdom2.adapters | Classes to create specific DOM Document instances. |
org.jdom2.filter | Classes to both filter and generically type-cast nodes of a document based on type, name, value, or other aspects, and to boolean AND/OR/NEGATE these rules. |
org.jdom2.input | Classes to build JDOM documents from various sources. |
org.jdom2.input.stax | Support classes for building JDOM documents and content using StAX readers. |
org.jdom2.located | Extended JDOM Content Classes that contain location coordinates. |
org.jdom2.output | Classes to output JDOM documents to various destinations. |
org.jdom2.output.support | Classes used to implement output functionality that are not part of the actual Output API, but rather part of the implementation. |
Uses of DocType in org.jdom2 |
---|
Methods in org.jdom2 that return DocType | |
---|---|
DocType |
DocType.clone()
|
DocType |
DocType.detach()
|
DocType |
UncheckedJDOMFactory.docType(int line,
int col,
java.lang.String elementName)
|
DocType |
SlimJDOMFactory.docType(int line,
int col,
java.lang.String elementName)
|
DocType |
JDOMFactory.docType(int line,
int col,
java.lang.String elementName)
This will create the DocType with
the specified element name |
DocType |
DefaultJDOMFactory.docType(int line,
int col,
java.lang.String elementName)
|
DocType |
UncheckedJDOMFactory.docType(int line,
int col,
java.lang.String elementName,
java.lang.String systemID)
|
DocType |
SlimJDOMFactory.docType(int line,
int col,
java.lang.String elementName,
java.lang.String systemID)
|
DocType |
JDOMFactory.docType(int line,
int col,
java.lang.String elementName,
java.lang.String systemID)
This will create the DocType with
the specified element name and reference to an
external DTD. |
DocType |
DefaultJDOMFactory.docType(int line,
int col,
java.lang.String elementName,
java.lang.String systemID)
|
DocType |
UncheckedJDOMFactory.docType(int line,
int col,
java.lang.String elementName,
java.lang.String publicID,
java.lang.String systemID)
|
DocType |
SlimJDOMFactory.docType(int line,
int col,
java.lang.String elementName,
java.lang.String publicID,
java.lang.String systemID)
|
DocType |
JDOMFactory.docType(int line,
int col,
java.lang.String elementName,
java.lang.String publicID,
java.lang.String systemID)
This will create the DocType with
the specified element name and a reference to an
external DTD. |
DocType |
DefaultJDOMFactory.docType(int line,
int col,
java.lang.String elementName,
java.lang.String publicID,
java.lang.String systemID)
|
DocType |
JDOMFactory.docType(java.lang.String elementName)
This will create the DocType with
the specified element name |
DocType |
DefaultJDOMFactory.docType(java.lang.String elementName)
|
DocType |
JDOMFactory.docType(java.lang.String elementName,
java.lang.String systemID)
This will create the DocType with
the specified element name and reference to an
external DTD. |
DocType |
DefaultJDOMFactory.docType(java.lang.String elementName,
java.lang.String systemID)
|
DocType |
JDOMFactory.docType(java.lang.String elementName,
java.lang.String publicID,
java.lang.String systemID)
This will create the DocType with
the specified element name and a reference to an
external DTD. |
DocType |
DefaultJDOMFactory.docType(java.lang.String elementName,
java.lang.String publicID,
java.lang.String systemID)
|
DocType |
Document.getDocType()
This will return the
declaration for this Document , or
null if none exists. |
DocType |
DocType.setElementName(java.lang.String elementName)
This will set the root element name declared by this DOCTYPE declaration. |
protected DocType |
DocType.setParent(Parent parent)
|
DocType |
DocType.setPublicID(java.lang.String publicID)
This will set the public ID of an externally referenced DTD. |
DocType |
DocType.setSystemID(java.lang.String systemID)
This will set the system ID of an externally referenced DTD. |
Methods in org.jdom2 with parameters of type DocType | |
---|---|
Document |
UncheckedJDOMFactory.document(Element rootElement,
DocType docType)
|
Document |
JDOMFactory.document(Element rootElement,
DocType docType)
This will create a new Document ,
with the supplied
as the root element and the supplied
declaration. |
Document |
DefaultJDOMFactory.document(Element rootElement,
DocType docType)
|
Document |
UncheckedJDOMFactory.document(Element rootElement,
DocType docType,
java.lang.String baseURI)
|
Document |
JDOMFactory.document(Element rootElement,
DocType docType,
java.lang.String baseURI)
This will create a new Document ,
with the supplied
as the root element and the supplied
declaration. |
Document |
DefaultJDOMFactory.document(Element rootElement,
DocType docType,
java.lang.String baseURI)
|
Document |
Document.setDocType(DocType docType)
This will set the
declaration for this Document . |
Constructors in org.jdom2 with parameters of type DocType | |
---|---|
Document(Element rootElement,
DocType docType)
This will create a new Document ,
with the supplied
as the root element and the supplied
declaration. |
|
Document(Element rootElement,
DocType docType,
java.lang.String baseURI)
This will create a new Document ,
with the supplied
as the root element, the supplied
declaration, and the specified
base URI. |
Uses of DocType in org.jdom2.adapters |
---|
Methods in org.jdom2.adapters with parameters of type DocType | |
---|---|
org.w3c.dom.Document |
DOMAdapter.createDocument(DocType doctype)
This creates an empty Document object based
on a specific parser implementation with the given DOCTYPE. |
org.w3c.dom.Document |
AbstractDOMAdapter.createDocument(DocType doctype)
This creates an empty Document object based
on a specific parser implementation with the given DOCTYPE. |
Uses of DocType in org.jdom2.filter |
---|
Methods in org.jdom2.filter that return types with arguments of type DocType | |
---|---|
static Filter<DocType> |
Filters.doctype()
Return a Filter that matches any DocType data. |
Uses of DocType in org.jdom2.input |
---|
Methods in org.jdom2.input that return DocType | |
---|---|
DocType |
DOMBuilder.build(org.w3c.dom.DocumentType doctype)
This will build a JDOM Element from an existing DOM Element |
Uses of DocType in org.jdom2.input.stax |
---|
Methods in org.jdom2.input.stax that return DocType | |
---|---|
static DocType |
DTDParser.parse(java.lang.String input,
JDOMFactory factory)
Parse out a DOCTYPE declaration as supplied by the standard StAX readers. |
Uses of DocType in org.jdom2.located |
---|
Subclasses of DocType in org.jdom2.located | |
---|---|
class |
LocatedDocType
An XML DOCTYPE declaration. |
Methods in org.jdom2.located that return DocType | |
---|---|
DocType |
LocatedJDOMFactory.docType(int line,
int col,
java.lang.String elementName)
|
DocType |
LocatedJDOMFactory.docType(int line,
int col,
java.lang.String elementName,
java.lang.String systemID)
|
DocType |
LocatedJDOMFactory.docType(int line,
int col,
java.lang.String elementName,
java.lang.String publicID,
java.lang.String systemID)
|
Uses of DocType in org.jdom2.output |
---|
Methods in org.jdom2.output with parameters of type DocType | |
---|---|
org.w3c.dom.DocumentType |
DOMOutputter.output(DocType doctype)
This converts the JDOM DocType parameter to a DOM DocumentType,
returning the DOM version. |
void |
XMLOutputter.output(DocType doctype,
java.io.OutputStream out)
This will print the to the given
OutputStream. |
void |
XMLOutputter.output(DocType doctype,
java.io.Writer out)
Print out the . |
void |
StAXEventOutputter.output(DocType doctype,
javax.xml.stream.util.XMLEventConsumer out)
Print out the . |
void |
StAXStreamOutputter.output(DocType doctype,
javax.xml.stream.XMLStreamWriter out)
Print out the . |
java.lang.String |
XMLOutputter.outputString(DocType doctype)
Return a string representing a DocType . |
Uses of DocType in org.jdom2.output.support |
---|
Methods in org.jdom2.output.support with parameters of type DocType | |
---|---|
protected void |
AbstractSAXOutputProcessor.printDocType(SAXTarget out,
FormatStack fstack,
DocType docType)
This will handle printing of a DocType . |
protected void |
AbstractXMLOutputProcessor.printDocType(java.io.Writer out,
FormatStack fstack,
DocType docType)
This will handle printing of a DocType . |
protected void |
AbstractStAXEventProcessor.printDocType(javax.xml.stream.util.XMLEventConsumer out,
FormatStack fstack,
javax.xml.stream.XMLEventFactory eventfactory,
DocType docType)
This will handle printing of a DocType . |
protected void |
AbstractStAXStreamProcessor.printDocType(javax.xml.stream.XMLStreamWriter out,
FormatStack fstack,
DocType docType)
This will handle printing of a DocType . |
void |
SAXOutputProcessor.process(SAXTarget out,
Format format,
DocType doctype)
Print out the . |
void |
AbstractSAXOutputProcessor.process(SAXTarget out,
Format format,
DocType doctype)
|
void |
XMLOutputProcessor.process(java.io.Writer out,
Format format,
DocType doctype)
Print out the . |
void |
AbstractXMLOutputProcessor.process(java.io.Writer out,
Format format,
DocType doctype)
|
void |
StAXEventProcessor.process(javax.xml.stream.util.XMLEventConsumer out,
Format format,
javax.xml.stream.XMLEventFactory eventfactory,
DocType doctype)
Print out the . |
void |
AbstractStAXEventProcessor.process(javax.xml.stream.util.XMLEventConsumer out,
Format format,
javax.xml.stream.XMLEventFactory eventfactory,
DocType doctype)
|
void |
StAXStreamProcessor.process(javax.xml.stream.XMLStreamWriter out,
Format format,
DocType doctype)
Print out the . |
void |
AbstractStAXStreamProcessor.process(javax.xml.stream.XMLStreamWriter out,
Format format,
DocType doctype)
|
|
JDOM 2.0.2 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |