The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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