Message::DOM::DOMImplementation - manakai - The DOMImplementation
Interface
use Message::DOM::DOMImplementation; my $impl = Message::DOM::DOMImplementation->new; my $doc = $impl->create_document;
The Message::DOM::DOMImplementation
module conatins an
implementation of DOMImplementation
interface as defined
in the DOM Level 3 Core specification.
This module is part of manakai.
Any methods defined for DOMImplementation
interface
and other interface such as URIImplementation
can
be invoked via the object returned by the new
method.
For example, a DOM Document
object can be created by:
$doc = $impl->create_document;
DOM Level 3 Core specification <http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-102161490>.
the Message::DOM::DOMImplementationRegistry manpage.
Wakaba <w@suika.fam.cx>.
Copyright 2007 Wakaba <w@suika.fam.cx>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.