Brendt Wohlberg > XML-DTD-0.08 > XML::DTD::Notation

Download:
XML-DTD-0.08.tar.gz

Dependencies

Annotate this POD (1)

CPAN RT

Open  0
Report a bug
Module Version: 0.04   Source  

NAME ^

XML::DTD::Notation - Perl module representing a notation declaration in a DTD

SYNOPSIS ^

  use XML::DTD::Notation;

  my $not = XML::DTD::Notation->new('<!NOTATION e PUBLIC "+//F//G//EN">');

DESCRIPTION ^

XML::DTD::Notation is a Perl module representing a notation declaration in a DTD. The following methods are provided.

new
 my $not = XML::DTD::Notation->new('<!NOTATION e PUBLIC "+//F//G//EN">');

Construct a new XML::DTD::Notation object.

name
 print $not->name;

Return the notation name

sysid
 print $not->sysid;

Return the notation sysid

pubid
 print $not->pubid;

Return the notation pubid

SEE ALSO ^

XML::DTD, XML::DTD::Component

AUTHOR ^

Brendt Wohlberg <wohl@cpan.org>

COPYRIGHT AND LICENSE ^

Copyright (C) 2004-2006 by Brendt Wohlberg

This library is available under the terms of the GNU General Public License (GPL), described in the GPL file included in this distribution.

ACKNOWLEDGMENTS ^

Peter Lamb <Peter.Lamb@csiro.au> improved parsing of NOTATION declarations.