#include <DomNotation.h>
Inherits xmldom::DomNode.
Inheritance diagram for xmldom::DomNotation:

A notation either declares, by name, the format of an unparsed entity, or is used for formal declaration of processing instruction targets. The getNodeName() attribute inherited from DomNode is set to the declared name of the notation.
The DOM Core does not support editing Notation nodes; they are therefore readonly.
A Notation node does not have any parent.
Public Member Functions | |
| DomNotation () | |
| ctor | |
| DomNotation (const DomNotation ©) | |
| copy ctor | |
| virtual | ~DomNotation () |
| dtor | |
| const DomNotation & | operator= (const DomNotation &assign) |
| assign | |
DOM Level 1 | |
| DomString | getPublicId () const |
| The public identifier of this notation. | |
| DomString | getSystemId () const |
| The system identifier of this notation. | |
| xmldom::DomNotation::DomNotation | ( | ) |
ctor
| xmldom::DomNotation::DomNotation | ( | const DomNotation & | copy | ) |
copy ctor
| xmldom::DomNotation::~DomNotation | ( | ) | [virtual] |
dtor
| const DomNotation & xmldom::DomNotation::operator= | ( | const DomNotation & | assign | ) |
assign
| DomString xmldom::DomNotation::getPublicId | ( | ) | const |
The public identifier of this notation.
If the public identifier was not specified, this is null.
| DomString xmldom::DomNotation::getSystemId | ( | ) | const |
The system identifier of this notation.
If the system identifier was not specified, this is null. This may be an absolute URI or not.
1.5.2