1XML::DOM::Notation(3) User Contributed Perl DocumentationXML::DOM::Notation(3)
2
3
4
6 XML::DOM::Notation - An XML NOTATION in XML::DOM
7
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 getName and setName (name)
23 Returns (or sets) the Notation name, which is the first token after
24 the NOTATION keyword.
25
26 getSysId and setSysId (sysId)
27 Returns (or sets) the system ID, which is the token after the
28 optional SYSTEM keyword.
29
30 getPubId and setPubId (pubId)
31 Returns (or sets) the public ID, which is the token after the
32 optional PUBLIC keyword.
33
34 getBase
35 This is passed by XML::Parser in the Notation handler. I don't
36 know what it is yet.
37
38 getNodeName
39 Returns the same as getName.
40
41
42
43perl v5.34.0 2021-07-27 XML::DOM::Notation(3)