dummy_foundation/lib/XML/DOM/Notation.pod
changeset 4 60053dab7e2a
parent 3 8b87ea768cb8
child 5 842a773e65f2
child 6 c34a018f3291
equal deleted inserted replaced
3:8b87ea768cb8 4:60053dab7e2a
     1 =head1 NAME
       
     2 
       
     3 XML::DOM::Notation - An XML NOTATION in XML::DOM
       
     4 
       
     5 =head1 DESCRIPTION
       
     6 
       
     7 XML::DOM::Notation extends L<XML::DOM::Node>.
       
     8 
       
     9 This node represents a Notation, e.g.
       
    10 
       
    11  <!NOTATION gs SYSTEM "GhostScript">
       
    12 
       
    13  <!NOTATION name PUBLIC "pubId">
       
    14 
       
    15  <!NOTATION name PUBLIC "pubId" "sysId">
       
    16 
       
    17  <!NOTATION name SYSTEM "sysId">
       
    18 
       
    19 =head2 METHODS
       
    20 
       
    21 =over 4
       
    22 
       
    23 =item getName and setName (name)
       
    24 
       
    25 Returns (or sets) the Notation name, which is the first token after the 
       
    26 NOTATION keyword.
       
    27 
       
    28 =item getSysId and setSysId (sysId)
       
    29 
       
    30 Returns (or sets) the system ID, which is the token after the optional
       
    31 SYSTEM keyword.
       
    32 
       
    33 =item getPubId and setPubId (pubId)
       
    34 
       
    35 Returns (or sets) the public ID, which is the token after the optional
       
    36 PUBLIC keyword.
       
    37 
       
    38 =item getBase
       
    39 
       
    40 This is passed by XML::Parser in the Notation handler. 
       
    41 I don't know what it is yet.
       
    42 
       
    43 =item getNodeName
       
    44 
       
    45 Returns the same as getName.
       
    46 
       
    47 =back