All Packages Class Hierarchy This Package Previous Next Index
Interface oracle.xml.parser.NSAttr
- public interface NSAttr
- extends Attr
This interface extends the DOM Attr
interface to provide
Namespace support. Applications that require Namespace support can
explicitly cast any attribute returned by an Oracle parser class to
NSAttr
and use the methods described here.
-
getExpandedName()
- Get the fully resolved name for this attribute
-
getLocalName()
- Get the local name for this attribute
-
getNamespace()
- Get the resolved Namespace for this attribute
-
getQualifiedName()
- Get the qualified attribute name
getQualifiedName
public abstract String getQualifiedName()
- Get the qualified attribute name
- Returns:
- The qualified name
getNamespace
public abstract String getNamespace()
- Get the resolved Namespace for this attribute
- Returns:
- The resolved Namespace
getLocalName
public abstract String getLocalName()
- Get the local name for this attribute
- Returns:
- The local name
getExpandedName
public abstract String getExpandedName()
- Get the fully resolved name for this attribute
- Returns:
- The fully resolved name
All Packages Class Hierarchy This Package Previous Next Index