org.apache.xerces.dom
Class AttrNSImpl

java.lang.Object
  extended by org.apache.xerces.dom.NodeImpl
      extended by org.apache.xerces.dom.AttrImpl
          extended by org.apache.xerces.dom.AttrNSImpl
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, Attr, EventTarget, Node, NodeList, TypeInfo
Direct Known Subclasses:
DeferredAttrNSImpl, PSVIAttrNSImpl

public class AttrNSImpl
extends AttrImpl

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.

Version:
$Id: AttrNSImpl.java 449328 2006-09-23 22:58:23Z mrglavas $
Author:
Arnaud Le Hors, IBM, Andy Clark, IBM, Ralf Pfeiffer, IBM
See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.apache.xerces.dom.NodeImpl
DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_IS_CONTAINED, DOCUMENT_POSITION_PRECEDING, ELEMENT_DEFINITION_NODE, TREE_POSITION_ANCESTOR, TREE_POSITION_DESCENDANT, TREE_POSITION_DISCONNECTED, TREE_POSITION_EQUIVALENT, TREE_POSITION_FOLLOWING, TREE_POSITION_PRECEDING, TREE_POSITION_SAME_NODE
 
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()
           
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, normalize, removeChild, replaceChild, setIdAttribute, setNodeValue, setReadOnly, setSpecified, setType, setValue, toString
 
Methods inherited from class org.apache.xerces.dom.NodeImpl
addEventListener, appendChild, compareDocumentPosition, compareTreePosition, dispatchEvent, getAttributes, getBaseURI, getFeature, getNextSibling, getOwnerDocument, getParentNode, getPreviousSibling, getReadOnly, getTextContent, getUserData, getUserData, hasAttributes, isDefaultNamespace, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, needsSyncChildren, removeEventListener, setTextContent, setUserData, setUserData
 
Methods inherited from class java.lang.Object
equals, 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
 

Constructor Detail

AttrNSImpl

public AttrNSImpl()

AttrNSImpl

public AttrNSImpl(CoreDocumentImpl ownerDocument,
                  java.lang.String namespaceURI,
                  java.lang.String qualifiedName,
                  java.lang.String localName)
Method Detail

setValues

public 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

Parameters:
ownerDocument -
namespaceURI -
qualifiedName -
localName -

getNamespaceURI

public java.lang.String getNamespaceURI()
Introduced in DOM Level 2.

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.

Specified by:
getNamespaceURI in interface Node
Overrides:
getNamespaceURI in class NodeImpl
Since:
WD-DOM-Level-2-19990923
See Also:
AttrNSImpl, ElementNSImpl

getPrefix

public java.lang.String getPrefix()
Introduced in DOM Level 2.

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.

Specified by:
getPrefix in interface Node
Overrides:
getPrefix in class NodeImpl
Since:
WD-DOM-Level-2-19990923
See Also:
AttrNSImpl, ElementNSImpl

setPrefix

public void setPrefix(java.lang.String prefix)
               throws DOMException
Introduced in DOM Level 2.

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.

Specified by:
setPrefix in interface Node
Overrides:
setPrefix in class NodeImpl
Parameters:
prefix - The namespace prefix of this node, or null(empty string) if it is unspecified.
Throws:
INVALID_CHARACTER_ERR - Raised if the specified prefix contains an invalid character.
DOMException
Since:
WD-DOM-Level-2-19990923
See Also:
AttrNSImpl, ElementNSImpl

getLocalName

public java.lang.String getLocalName()
Introduced in DOM Level 2.

Returns the local part of the qualified name of this node.

Specified by:
getLocalName in interface Node
Overrides:
getLocalName in class NodeImpl
Since:
WD-DOM-Level-2-19990923
See Also:
AttrNSImpl, ElementNSImpl

getTypeName

public java.lang.String getTypeName()
Description copied from interface: TypeInfo
The name of a type declared for the associated element or attribute, or null if unknown.

Specified by:
getTypeName in interface TypeInfo
Overrides:
getTypeName in class AttrImpl
See Also:
TypeInfo.getTypeName()

isDerivedFrom

public boolean isDerivedFrom(java.lang.String typeNamespaceArg,
                             java.lang.String typeNameArg,
                             int derivationMethod)
Introduced in DOM Level 3.

Checks if a type is derived from another by restriction. See: http://www.w3.org/TR/DOM-Level-3-Core/core.html#TypeInfo-isDerivedFrom

Specified by:
isDerivedFrom in interface TypeInfo
Overrides:
isDerivedFrom in class AttrImpl
Parameters:
typeNamespaceArg - The namspace of the ancestor type declaration
typeNameArg - The name of the ancestor type declaration
derivationMethod - The derivation method
Returns:
boolean True if the type is derived by restriciton for the reference type

getTypeNamespace

public java.lang.String getTypeNamespace()
Description copied from interface: TypeInfo
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.

Specified by:
getTypeNamespace in interface TypeInfo
Overrides:
getTypeNamespace in class AttrImpl
See Also:
TypeInfo.getTypeNamespace()