Package | Description |
---|---|
org.dom4j |
Defines the XML Document Object Model in Java interfaces together with some helper classes.
|
org.dom4j.dtd |
Classes to represent the DTD declarations.
|
org.dom4j.io |
Provides input and output via SAX and DOM together with writing dom4j objects to streams as XML text.
|
org.dom4j.tree |
Contains the default implementations of the dom4j Document Object Model together with some helpful base classes for those wishing to implement their own document object model.
|
Modifier and Type | Method and Description |
---|---|
List<Decl> |
DocumentType.getExternalDeclarations()
Returns a list of internal DTD declaration objects, defined in the
org.dom4j.dtd package |
List<Decl> |
DocumentType.getInternalDeclarations()
Returns a list of internal DTD declaration objects, defined in the
org.dom4j.dtd package |
Modifier and Type | Method and Description |
---|---|
void |
DocumentType.setExternalDeclarations(List<Decl> declarations)
Sets the list of internal DTD declaration objects, defined in the
org.dom4j.dtd package |
void |
DocumentType.setInternalDeclarations(List<Decl> declarations)
Sets the list of internal DTD declaration objects, defined in the
org.dom4j.dtd package |
Modifier and Type | Class and Description |
---|---|
class |
AttributeDecl
AttributeDecl represents an attribute declaration in a DTD. |
class |
ElementDecl
AttributeDecl represents an element declaration in a DTD. |
class |
ExternalEntityDecl
ExternalEntityDecl represents an external entity declaration
in a DTD. |
class |
InternalEntityDecl
InternalEntityDecl represents an internal entity declaration
in a DTD. |
Modifier and Type | Method and Description |
---|---|
protected void |
SAXContentHandler.addDTDDeclaration(Decl declaration)
Adds an internal DTD declaration to the list of declarations
|
protected void |
SAXContentHandler.addExternalDTDDeclaration(Decl declaration)
Adds an external DTD declaration to the list of declarations
|
Modifier and Type | Method and Description |
---|---|
List<Decl> |
DefaultDocumentType.getExternalDeclarations() |
List<Decl> |
DefaultDocumentType.getInternalDeclarations() |
Modifier and Type | Method and Description |
---|---|
void |
DefaultDocumentType.setExternalDeclarations(List<Decl> externalDeclarations) |
void |
DefaultDocumentType.setInternalDeclarations(List<Decl> internalDeclarations) |
Copyright © 2017. All rights reserved.