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 List<Decl>DocumentType. getExternalDeclarations()Returns a list of internal DTD declaration objects, defined in theorg.dom4j.dtdpackageList<Decl>DocumentType. getInternalDeclarations()Returns a list of internal DTD declaration objects, defined in theorg.dom4j.dtdpackageMethod parameters in org.dom4j with type arguments of type Decl Modifier and Type Method Description voidDocumentType. setExternalDeclarations(List<Decl> declarations)Sets the list of internal DTD declaration objects, defined in theorg.dom4j.dtdpackagevoidDocumentType. setInternalDeclarations(List<Decl> declarations)Sets the list of internal DTD declaration objects, defined in theorg.dom4j.dtdpackage -
Uses of Decl in org.dom4j.dtd
Classes in org.dom4j.dtd that implement Decl Modifier and Type Class Description classAttributeDeclAttributeDeclrepresents an attribute declaration in a DTD.classElementDeclAttributeDeclrepresents an element declaration in a DTD.classExternalEntityDeclExternalEntityDeclrepresents an external entity declaration in a DTD.classInternalEntityDeclInternalEntityDeclrepresents 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 voidSAXContentHandler. addDTDDeclaration(Decl declaration)Adds an internal DTD declaration to the list of declarationsprotected voidSAXContentHandler. 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 List<Decl>DefaultDocumentType. getExternalDeclarations()List<Decl>DefaultDocumentType. getInternalDeclarations()Method parameters in org.dom4j.tree with type arguments of type Decl Modifier and Type Method Description voidDefaultDocumentType. setExternalDeclarations(List<Decl> externalDeclarations)voidDefaultDocumentType. setInternalDeclarations(List<Decl> internalDeclarations)
-