diff -r 8b87ea768cb8 -r 60053dab7e2a dummy_foundation/lib/XML/DOM/Entity.pod --- a/dummy_foundation/lib/XML/DOM/Entity.pod Wed Jun 03 18:33:51 2009 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,56 +0,0 @@ -=head1 NAME - -XML::DOM::Entity - An XML ENTITY in XML::DOM - -=head1 DESCRIPTION - -XML::DOM::Entity extends L. - -This node represents an Entity declaration, e.g. - - - - - -The first one is called a parameter entity and is referenced like this: %draft; -The 2nd is a (regular) entity and is referenced like this: &hatch-pic; - -=head2 METHODS - -=over 4 - -=item getNotationName - -Returns the name of the notation for the entity. - -I The DOM Spec says: For unparsed entities, the name of the -notation for the entity. For parsed entities, this is null. -(This implementation does not support unparsed entities.) - -=item getSysId - -Returns the system id, or undef. - -=item getPubId - -Returns the public id, or undef. - -=back - -=head2 Additional methods not in the DOM Spec - -=over 4 - -=item isParameterEntity - -Whether it is a parameter entity (%ent;) or not (&ent;) - -=item getValue - -Returns the entity value. - -=item getNdata - -Returns the NDATA declaration (for general unparsed entities), or undef. - -=back