Uses of Class
org.dom4j.tree.AbstractNode
Packages that use AbstractNode
Package
Description
Defines the XML Document Object Model in Java interfaces together with some helper classes.
An implementation of the dom4j API which allows JavaBeans to be used to store and retrieve attribute values from Element.
An implementation of the dom4j API which also supports the W3C object model.
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.
A collection of utility classes for the dom4j API.
-
Uses of AbstractNode in org.dom4j
Subclasses of AbstractNode in org.dom4jModifier and TypeClassDescriptionclassNamespaceis a Flyweight Namespace that can be shared amongst nodes. -
Uses of AbstractNode in org.dom4j.bean
Subclasses of AbstractNode in org.dom4j.beanModifier and TypeClassDescriptionclassBeanAttributerepresents a mutable XML attribute which is backed by a property of the JavaBean of its parent element.classBeanElementuses a Java Bean to store its attributes. -
Uses of AbstractNode in org.dom4j.dom
Subclasses of AbstractNode in org.dom4j.domModifier and TypeClassDescriptionclassDOMAttributeimplements a doubly linked attribute which supports the W3C DOM API.classDOMCDATAimplements a CDATA Section which supports the W3C DOM API.classDOMTextimplements a Text node which supports the W3C DOM API.classDOMDocumentimplements an XML document which supports the W3C DOM API.classDOMDocumentTypeimplements a DocumentType node which supports the W3C DOM API.classDOMElementimplements an XML element which supports the W3C DOM API.classDOMEntityimplements a Entity node which supports the W3C DOM API.classDOMNamespaceimplements a Namespace that is compatable with the DOM API.classDOMProcessingInstructionimplements a ProcessingInstruction node which supports the W3C DOM API.classDOMTextimplements a Text node which supports the W3C DOM API. -
Uses of AbstractNode in org.dom4j.tree
Subclasses of AbstractNode in org.dom4j.treeModifier and TypeClassDescriptionclassAbstractNamespaceis an abstract base class for tree implementors to use for implementation inheritence.classAbstractBranchis an abstract base class for tree implementors to use for implementation inheritence.classAbstractCDATAis an abstract base class for tree implementors to use for implementation inheritence.classAbstractCharacterDatais an abstract base class for tree implementors to use for implementation inheritence.classAbstractCommentis an abstract base class for tree implementors to use for implementation inheritence.classAbstractDocumentis an abstract base class for tree implementors to use for implementation inheritence.classAbstractDocumentTypeis an abstract base class for tree implementors to use for implementation inheritence.classAbstractElementis an abstract base class for tree implementors to use for implementation inheritence.classAbstractEntityis an abstract base class for tree implementors to use for implementation inheritence.classAbstractProcessingInstructionis an abstract base class for tree implementors to use for implementation inheritence.classAbstractTextis an abstract base class for tree implementors to use for implementation inheritence.classBaseElementis a useful base class for implemementation inheritence of an XML element.classDefaultAttributeimplements a doubly linked node which supports the parent relationship and is mutable.classDefaultCDATAis the default CDATA implementation.classDefaultCommentis the default Comment implementation.classDefaultDocumentis the default DOM4J default implementation of an XML document.classDefaultDocumentTypeis the DOM4J default implementation of an XML document type.classDefaultElementis the default DOM4J default implementation of an XML element.classDefaultEntityis the default Entity implementation.classDefaultNamespaceimplements a doubly linked node which supports the parent relationship and is mutable.classDefaultProcessingInstructionis the default Processing Instruction implementation.classDefaultTextis the default Text implementation.classFlyweightAttributeis a Flyweight pattern implementation of a singly linked, read-only XML Attribute.classFlyweightCDATAis a Flyweight pattern implementation of a singly linked, read-only XML CDATA.classFlyweightCommentis a Flyweight pattern implementation of a singly linked, read-only XML Comment.classFlyweightEntityis a Flyweight pattern implementation of a singly linked, read-only XML entity.classFlyweightProcessingInstructionis a Flyweight pattern implementation of a singly linked, read-only XML Processing Instruction.classFlyweightTextis a Flyweight pattern implementation of a singly linked, read-only XML Text. -
Uses of AbstractNode in org.dom4j.util
Subclasses of AbstractNode in org.dom4j.utilModifier and TypeClassDescriptionclassIndexedElementis an implementation ofElementwhich maintains an index of the attributes and elements it contains to optimise lookups via name.classNonLazyElementis the default DOM4J default implementation of an XML element.classUserDataAttributesupport the adornment of a user data object on an Element or Attribute instance such that the methodsUserDataAttribute.getData()UserDataAttribute.setData(Object)will get and set the values of a user data object.classUserDataElementsupport the adornment of a user data object on an Element or Attribute instance such that the methodsUserDataElement.getData()UserDataElement.setData(Object)will get and set the values of a user data object.