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


XML-DTD documentation  | view source Contained in the XML-DTD distribution.

Index


NAME

Top

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

SYNOPSIS

Top

  use XML::DTD::Notation;

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

DESCRIPTION

Top

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

Top

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

AUTHOR

Top

Brendt Wohlberg <wohl@cpan.org>

COPYRIGHT AND LICENSE

Top

ACKNOWLEDGMENTS

Top

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


XML-DTD documentation  | view source Contained in the XML-DTD distribution.