Uses of Interface
org.dom4j.dtd.Decl
-
Packages that use Decl 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. -
-
Uses of Decl in org.dom4j
Methods in org.dom4j that return types with arguments of type Decl Modifier and Type Method Description java.util.List<Decl>
DocumentType. getExternalDeclarations()
Returns a list of internal DTD declaration objects, defined in theorg.dom4j.dtd
packagejava.util.List<Decl>
DocumentType. getInternalDeclarations()
Returns a list of internal DTD declaration objects, defined in theorg.dom4j.dtd
packageMethod parameters in org.dom4j with type arguments of type Decl Modifier and Type Method Description void
DocumentType. setExternalDeclarations(java.util.List<Decl> declarations)
Sets the list of internal DTD declaration objects, defined in theorg.dom4j.dtd
packagevoid
DocumentType. setInternalDeclarations(java.util.List<Decl> declarations)
Sets the list of internal DTD declaration objects, defined in theorg.dom4j.dtd
package -
Uses of Decl in org.dom4j.dtd
Classes in org.dom4j.dtd that implement Decl Modifier and Type Class 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. -
Uses of Decl in org.dom4j.io
Methods in org.dom4j.io with parameters of type Decl Modifier and Type Method Description protected void
SAXContentHandler. addDTDDeclaration(Decl declaration)
Adds an internal DTD declaration to the list of declarationsprotected void
SAXContentHandler. addExternalDTDDeclaration(Decl declaration)
Adds an external DTD declaration to the list of declarations -
Uses of Decl in org.dom4j.tree
Methods in org.dom4j.tree that return types with arguments of type Decl Modifier and Type Method Description java.util.List<Decl>
DefaultDocumentType. getExternalDeclarations()
java.util.List<Decl>
DefaultDocumentType. getInternalDeclarations()
Method parameters in org.dom4j.tree with type arguments of type Decl Modifier and Type Method Description void
DefaultDocumentType. setExternalDeclarations(java.util.List<Decl> externalDeclarations)
void
DefaultDocumentType. setInternalDeclarations(java.util.List<Decl> internalDeclarations)
-