|
NAMEXML::DOM2::Element::DocumentType - XML DocumentType DESCRIPTIONProvides a DocumentType element for documents METHODSnewCreates a new documentType objectParameters: - name qualified name of the document to be created. - publicid The external subset public identifier. - systemid The external subset system identifier. ownerDocument$document = $document->ownerDocument;Returns the document that this type is within, undef if orphaned. nameThe name of DTD; i.e., the name immediately following the DOCTYPE keyword.entitiesA NamedNodeMap containing the general entities, both external and internal, declared in the DTD. Parameter entities are not contained. Duplicates are discarded.notationsReturns a HASH containing the notations declared in the DTD. Duplicates are discarded. Every node in this map also implements the Notation interface.The DOM Level 2 does not support editing notations, therefore notations cannot be altered in any way. publicIdReturns the public identifier of the external subset.systemIdReturns the system identifier of the external subset.internalSubsetThe internal subset as a string.Note: The actual content returned depends on how much information is available to the implementation. This may vary depending on various parameters, including the XML processor used to build the document. $documentType->dtd()Returns the document type definition information. AUTHORMartin Owens, doctormo@postmaster.co.ukSEE ALSOperl(1), XML::DOM2, XML::DOM2::Element, XML::DOM2::DOM<http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core.html> DOM at the W3C
Visit the GSP FreeBSD Man Page Interface. |