[All Packages] [Previous] [Next]
Namespace APIs provide an interface that is an extension to the DOM and give information relating to the document namespaces.
The implementation of this C Namespace interface follows the XML Namespace standard of revision REC-xml-names-19990114.
typedef unsigned char oratext;
typedef struct xmlattr xmlattr;
Note: The contents of xmlattr are private and must not be accessed by users.
typedef struct xmlnode xmlnode;
Note: The contents of xmlnode are private and must not be accessed by users.
PURPOSE
This function returns the local name of this attribute.
SYNTAX
const oratext *getAttrLocal(const xmlattr *attr);
PARAMETERS
attr (IN) - pointer to opaque attribute structure (see getAttribute)
COMMENTS
PURPOSE
This function returns namespace for this attribute.
SYNTAX
const oratext *getAttrNamespace(const xmlattr *attr);
PARAMETERS
attr (IN) - pointer to opaque attribute structure (see getAttribute)
COMMENTS
PURPOSE
This function returns prefix for this attribute.
SYNTAX
const oratext *getAttrPrefix(const xmlattr *attr);
PARAMETERS
attr (IN) - pointer to opaque attribute structure (see getAttribute)
COMMENTS
PURPOSE
This function returns fully qualified name for the attribute.
SYNTAX
const oratext *getAttrQualifiedName(const xmlattr *attr);
PARAMETERS
attr (IN) - pointer to opaque attribute structure (see getAttribute)
COMMENTS
PURPOSE
This function returns the local name of this node.
SYNTAX
const oratext *getNodeLocal(const xmlnode *node);
PARAMETERS
node (IN) - node to get local name from
COMMENTS
PURPOSE
This function returns namespace for this node.
SYNTAX
const oratext *getNodeNamespace(const xmlnode *node);
PARAMETERS
node (IN) - node to get namespace from
COMMENTS
PURPOSE
This function returns prefix for this node.
SYNTAX
const oratext *getNodePrefix(const xmlnode *node);
PARAMETERS
node (IN) - node to get prefix from
COMMENTS
PURPOSE
This function returns fully qualified name for this node.
SYNTAX
const oratext *getNodeQualifiedName(const xmlnode *node);
PARAMETERS
node (IN) - node to get name from
COMMENTS