home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-perl-addon-1.4.9-installer.exe / Notation.pod < prev    next >
Encoding:
Text File  |  2002-06-15  |  919 b   |  48 lines

  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
  48.