All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface oracle.xml.parser.NSElement

public interface NSElement
extends Element
This interface extends the DOM Element interface to provide Namespace support. Applications that require Namespace support can explicitly cast any element returned by an Oracle parser class to NSElement and use the methods described here.


Method Index

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

Methods

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

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

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

Returns:
The local name
 o getExpandedName
 public abstract String getExpandedName()
Get the fully resolved name for this element

Returns:
The fully resolved name

All Packages  Class Hierarchy  This Package  Previous  Next  Index