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.


Method Index

 o getExpandedName()
Get the fully resolved name for this attribute
 o getLocalName()
Get the local name for this attribute
 o getNamespace()
Get the resolved Namespace for this attribute
 o getQualifiedName()
Get the qualified attribute name

Methods

 o getQualifiedName
 public abstract String getQualifiedName()
Get the qualified attribute name

Returns:
The qualified name
 o getNamespace
 public abstract String getNamespace()
Get the resolved Namespace for this attribute

Returns:
The resolved Namespace
 o getLocalName
 public abstract String getLocalName()
Get the local name for this attribute

Returns:
The local name
 o 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