NAME

Message::DOM::DOMImplementation - manakai - The DOMImplementation Interface


SYNOPSIS

  use Message::DOM::DOMImplementation;
  my $impl = Message::DOM::DOMImplementation->new;
  
  my $doc = $impl->create_document;


DESCRIPTION

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.


METHODS

$impl = Message::DOM::DOMImplementation->new;
Creates a new instance of the DOM implementation and returns it.

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;


SEE ALSO

DOM Level 3 Core specification <http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-102161490>.

the Message::DOM::DOMImplementationRegistry manpage.


AUTHOR

Wakaba <w@suika.fam.cx>.


LICENSE

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.