1XML::DOM::Notation(3) User Contributed Perl DocumentationXML::DOM::Notation(3)
2
3
4

NAME

6       XML::DOM::Notation - An XML NOTATION in XML::DOM
7

DESCRIPTION

9       XML::DOM::Notation extends XML::DOM::Node.
10
11       This node represents a Notation, e.g.
12
13        <!NOTATION gs SYSTEM "GhostScript">
14
15        <!NOTATION name PUBLIC "pubId">
16
17        <!NOTATION name PUBLIC "pubId" "sysId">
18
19        <!NOTATION name SYSTEM "sysId">
20
21       METHODS
22
23       getName and setName (name)
24           Returns (or sets) the Notation name, which is the first token after
25           the NOTATION keyword.
26
27       getSysId and setSysId (sysId)
28           Returns (or sets) the system ID, which is the token after the
29           optional SYSTEM keyword.
30
31       getPubId and setPubId (pubId)
32           Returns (or sets) the public ID, which is the token after the
33           optional PUBLIC keyword.
34
35       getBase
36           This is passed by XML::Parser in the Notation handler.  I don't
37           know what it is yet.
38
39       getNodeName
40           Returns the same as getName.
41
42
43
44perl v5.8.8                       2002-02-08             XML::DOM::Notation(3)
Impressum