Class BeanAttribute
java.lang.Object
org.dom4j.tree.AbstractNode
org.dom4j.tree.AbstractAttribute
org.dom4j.bean.BeanAttribute
- All Implemented Interfaces:
Serializable, Cloneable, Attribute, Node
BeanAttribute represents a mutable XML attribute which is
backed by a property of the JavaBean of its parent element.
- Version:
- $Revision: 1.7 $
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final BeanAttributeListThe list of Bean attributesprivate final intThe index in the Bean attribute listFields inherited from class AbstractNode
NODE_TYPE_NAMESFields inherited from interface Node
ANY_NODE, ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_REFERENCE_NODE, MAX_NODE_TYPE, NAMESPACE_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE, UNKNOWN_NODE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetData()Accesses the data of this attribute which may implement data typing bindings such asXML SchemaorJava Beanbindings or will return the same value asNode.getText().getParentreturns the parentElementif this node supports the parent relationship or null if it is the root element or does not support the parent relationship.getQName()Returns theQNameof this attribute which represents the local name, the qualified name and theNamespace.getValue()Returns the value of the attribute.voidSets the data value of this attribute if this element supports data binding or callsNode.setText(String)if it doesn't.voidSets the value of this attribute or this method will throw anUnsupportedOperationExceptionif it is read-only.Methods inherited from class AbstractAttribute
accept, asXML, createXPathResult, getName, getNamespace, getNamespacePrefix, getNamespaceURI, getNodeType, getPath, getQualifiedName, getText, getUniquePath, setNamespace, setText, toString, writeMethods inherited from class AbstractNode
asXPathResult, clone, createPattern, createXPath, createXPathFilter, detach, getDocument, getDocumentFactory, getNodeTypeName, getPath, getStringValue, getUniquePath, hasContent, isReadOnly, matches, numberValueOf, selectNodes, selectNodes, selectNodes, selectObject, selectSingleNode, setDocument, setName, setParent, supportsParent, valueOfMethods inherited from class Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface Node
asXPathResult, clone, createXPath, detach, getDocument, getNodeTypeName, getPath, getStringValue, getUniquePath, hasContent, isReadOnly, matches, numberValueOf, selectNodes, selectNodes, selectNodes, selectObject, selectSingleNode, setDocument, setName, setParent, supportsParent, valueOf
-
Field Details
-
beanList
The list of Bean attributes -
index
private final int indexThe index in the Bean attribute list
-
-
Constructor Details
-
BeanAttribute
-
-
Method Details
-
getQName
-
getParent
Description copied from interface:NodegetParentreturns the parentElementif this node supports the parent relationship or null if it is the root element or does not support the parent relationship.This method is an optional feature and may not be supported for all
Nodeimplementations.- Specified by:
getParentin interfaceNode- Overrides:
getParentin classAbstractNode- Returns:
- the parent of this node or null if it is the root of the tree or the parent relationship is not supported.
-
getValue
Description copied from interface:AttributeReturns the value of the attribute. This method returns the same value as theNode.getText()method.- Returns:
- the value of the attribute
-
setValue
Description copied from interface:AttributeSets the value of this attribute or this method will throw anUnsupportedOperationExceptionif it is read-only.- Specified by:
setValuein interfaceAttribute- Overrides:
setValuein classAbstractAttribute- Parameters:
data- is the new value of this attribute
-
getData
Description copied from interface:AttributeAccesses the data of this attribute which may implement data typing bindings such asXML SchemaorJava Beanbindings or will return the same value asNode.getText().- Specified by:
getDatain interfaceAttribute- Overrides:
getDatain classAbstractAttribute- Returns:
- the attribute data
-
setData
Description copied from interface:AttributeSets the data value of this attribute if this element supports data binding or callsNode.setText(String)if it doesn't.- Specified by:
setDatain interfaceAttribute- Overrides:
setDatain classAbstractAttribute- Parameters:
data- the attribute data
-