GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
XML::DOM::Entity(3) User Contributed Perl Documentation XML::DOM::Entity(3)

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

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;

getNotationName
Returns the name of the notation for the entity.

Not Implemented 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.

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.
2000-01-31 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.