|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.xerces.dom.NodeImpl | +--org.apache.xerces.dom.AttrImpl | +--org.apache.xerces.dom.AttrNSImpl
AttrNSImpl inherits from AttrImpl and adds namespace support.
The qualified name is the node name, and we store localName which is also used in all queries. On the other hand we recompute the prefix when necessary.
Field Summary | |
protected java.lang.String |
localName
DOM2: localName. |
protected java.lang.String |
namespaceURI
DOM2: Namespace URI. |
Fields inherited from class org.apache.xerces.dom.AttrImpl |
name, textNode, value |
Fields inherited from interface org.w3c.dom.Node |
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE |
Fields inherited from interface org.w3c.dom.TypeInfo |
DERIVATION_EXTENSION, DERIVATION_LIST, DERIVATION_RESTRICTION, DERIVATION_UNION |
Constructor Summary | |
|
AttrNSImpl()
|
protected |
AttrNSImpl(CoreDocumentImpl ownerDocument,
java.lang.String value)
|
protected |
AttrNSImpl(CoreDocumentImpl ownerDocument,
java.lang.String namespaceURI,
java.lang.String qualifiedName)
DOM2: Constructor for Namespace implementation. |
|
AttrNSImpl(CoreDocumentImpl ownerDocument,
java.lang.String namespaceURI,
java.lang.String qualifiedName,
java.lang.String localName)
|
Method Summary | |
java.lang.String |
getLocalName()
Introduced in DOM Level 2. |
java.lang.String |
getNamespaceURI()
Introduced in DOM Level 2. |
java.lang.String |
getPrefix()
Introduced in DOM Level 2. |
java.lang.String |
getTypeName()
The name of a type declared for the associated element or attribute, or null if unknown. |
java.lang.String |
getTypeNamespace()
The namespace of the type declared for the associated element or attribute or null if the element does not have
declaration or if no namespace information is available. |
boolean |
isDerivedFrom(java.lang.String typeNamespaceArg,
java.lang.String typeNameArg,
int derivationMethod)
Introduced in DOM Level 3. |
void |
setPrefix(java.lang.String prefix)
Introduced in DOM Level 2. |
void |
setValues(CoreDocumentImpl ownerDocument,
java.lang.String namespaceURI,
java.lang.String qualifiedName,
java.lang.String localName)
NON-DOM: resets this node and sets specified values for the node |
Methods inherited from class org.apache.xerces.dom.AttrImpl |
cloneNode, getChildNodes, getElement, getFirstChild, getLastChild, getLength, getName, getNodeName, getNodeType, getNodeValue, getOwnerElement, getSchemaTypeInfo, getSpecified, getValue, hasChildNodes, insertBefore, isEqualNode, isId, item, makeChildNode, normalize, removeChild, replaceChild, setIdAttribute, setNodeValue, setReadOnly, setSpecified, setType, setValue, synchronizeChildren, toString |
Methods inherited from class org.apache.xerces.dom.NodeImpl |
addEventListener, appendChild, changed, changes, compareDocumentPosition, compareTreePosition, dispatchEvent, getAttributes, getBaseURI, getContainer, getFeature, getNextSibling, getNodeNumber, getOwnerDocument, getParentNode, getPreviousSibling, getReadOnly, getTextContent, getUserData, getUserData, getUserDataRecord, hasAttributes, isDefaultNamespace, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, needsSyncChildren, removeEventListener, setTextContent, setUserData, setUserData, synchronizeData |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.w3c.dom.Node |
appendChild, compareDocumentPosition, getAttributes, getBaseURI, getFeature, getNextSibling, getOwnerDocument, getParentNode, getPreviousSibling, getTextContent, getUserData, hasAttributes, isDefaultNamespace, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, setTextContent, setUserData |
Field Detail |
protected java.lang.String namespaceURI
protected java.lang.String localName
Constructor Detail |
public AttrNSImpl()
protected AttrNSImpl(CoreDocumentImpl ownerDocument, java.lang.String namespaceURI, java.lang.String qualifiedName)
public AttrNSImpl(CoreDocumentImpl ownerDocument, java.lang.String namespaceURI, java.lang.String qualifiedName, java.lang.String localName)
protected AttrNSImpl(CoreDocumentImpl ownerDocument, java.lang.String value)
Method Detail |
public void setValues(CoreDocumentImpl ownerDocument, java.lang.String namespaceURI, java.lang.String qualifiedName, java.lang.String localName)
ownerDocument
- namespaceURI
- qualifiedName
- localName
- public java.lang.String getNamespaceURI()
The namespace URI of this node, or null if it is unspecified.
This is not a computed value that is the result of a namespace lookup based on an examination of the namespace declarations in scope. It is merely the namespace URI given at creation time.
For nodes created with a DOM Level 1 method, such as createElement from the Document interface, this is null.
getNamespaceURI
in class NodeImpl
public java.lang.String getPrefix()
The namespace prefix of this node, or null if it is unspecified.
For nodes created with a DOM Level 1 method, such as createElement from the Document interface, this is null.
getPrefix
in class NodeImpl
public void setPrefix(java.lang.String prefix) throws org.w3c.dom.DOMException
Note that setting this attribute changes the nodeName attribute, which holds the qualified name, as well as the tagName and name attributes of the Element and Attr interfaces, when applicable.
setPrefix
in class NodeImpl
prefix
- The namespace prefix of this node, or null(empty string) if it is unspecified.INVALID_CHARACTER_ERR
- Raised if the specified
prefix contains an invalid character.org.w3c.dom.DOMException
- public java.lang.String getLocalName()
Returns the local part of the qualified name of this node.
getLocalName
in class NodeImpl
public java.lang.String getTypeName()
org.w3c.dom.TypeInfo
null
if unknown.getTypeName
in class AttrImpl
TypeInfo.getTypeName()
public boolean isDerivedFrom(java.lang.String typeNamespaceArg, java.lang.String typeNameArg, int derivationMethod)
Checks if a type is derived from another by restriction. See: http://www.w3.org/TR/DOM-Level-3-Core/core.html#TypeInfo-isDerivedFrom
isDerivedFrom
in class AttrImpl
ancestorNS
- The namspace of the ancestor type declarationancestorName
- The name of the ancestor type declarationtype
- The reference type definitionpublic java.lang.String getTypeNamespace()
org.w3c.dom.TypeInfo
null
if the element does not have
declaration or if no namespace information is available.getTypeNamespace
in class AttrImpl
TypeInfo.getTypeNamespace()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |