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

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

XML::DTD::Notation is a Perl module representing a notation declaration in a DTD. The following methods are provided.
my $not = XML::DTD::Notation->new('<!NOTATION e PUBLIC "+//F//G//EN">');
Construct a new XML::DTD::Notation object.
print $not->name;
Return the notation name
print $not->sysid;
Return the notation sysid
print $not->pubid;
Return the notation pubid


Brendt Wohlberg <wohl@cpan.org>

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.

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