All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface oracle.xml.parser.NSAttributeList

public interface NSAttributeList
extends AttributeList
This interface extends the SAX AttributeList interface to provide Namespace support. Applications that require Namespace support can explicitly cast any attribute list returned by an Oracle parser class to NSAttributeList and use the methods described here.


Method Index

 o getExpandedName(int)
Get the fully resolved name of the attribute at index
 o getLocalName(int)
Get the local name for the attribute at index
 o getNamespace(int)
Get the resolved Namespace of the attribute at index
 o getQualifiedName(int)
Get the qualified name of the attribute at index

Methods

 o getQualifiedName
 public abstract String getQualifiedName(int i)
Get the qualified name of the attribute at index

Parameters:
i - Index of the attribute
Returns:
The qualified name
 o getNamespace
 public abstract String getNamespace(int i)
Get the resolved Namespace of the attribute at index

Parameters:
i - Index of the attribute
Returns:
The resolved Namespace
 o getLocalName
 public abstract String getLocalName(int i)
Get the local name for the attribute at index

Parameters:
i - Index of the attribute
Returns:
The local name
 o getExpandedName
 public abstract String getExpandedName(int i)
Get the fully resolved name of the attribute at index

Parameters:
i - Index of the attribute
Returns:
The fully resolved name

All Packages  Class Hierarchy  This Package  Previous  Next  Index