logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

XML::DOM::Entity - An XML ENTITY in XML::DOM

Description

       XML::DOM::Entity extends XML::DOM::Node.

       This node represents an Entity declaration, e.g.

        <!ENTITY % draft 'INCLUDE'>

        <!ENTITY hatch-pic SYSTEM "../grafix/OpenHatch.gif" NDATA gif>

       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;

   METHODS
       getNotationName
           Returns the name of the notation for the entity.

           NotImplemented  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.)

       getSysId
           Returns the system id, or undef.

       getPubId
           Returns the public id, or undef.

   AdditionalmethodsnotintheDOMSpec
       isParameterEntity
           Whether it is a parameter entity (%ent;) or not (&ent;)

       getValue
           Returns the entity value.

       getNdata
           Returns the NDATA declaration (for general unparsed entities), or undef.

perl v5.36.0                                       2022-10-14                              XML::DOM::Entity(3pm)

Name

       XML::DOM::Entity - An XML ENTITY in XML::DOM

See Also