Table 4-10 summarizes the methods of available through the Notation
interface.
Table 4-10 Summary of NodeList Methods; DOM Package
Function | Summary |
---|---|
XmlDomGetNotationPubID
|
Get notation's public ID |
XmlDomGetNotationSysID
|
Get notation's system ID. |
Return a notation's public identifier (in the data encoding). If the node is not a notation, or has no defined public ID, returns NULL
.
oratext* XmlDomGetNotationPubID( xmlctx *xctx, xmlnotenode *note)
Parameter | In/Out | Description |
---|---|---|
xctx |
IN |
XML context |
note |
IN |
Notation node
|
(oratext *)
notation's public identifier [data encoding; may be NULL
]
Return a notation's system identifier (in the data encoding). If the node is not a notation, or has no defined system ID, returns NULL
.
oratext* XmlDomGetNotationSysID( xmlctx *xctx, xmlnotenode *note)
Parameter | In/Out | Description |
---|---|---|
xctx |
IN |
XML context |
note |
IN |
Notation node
|
(oratext *)
notation's system identifier [data encoding; may be NULL
]