1 |
=head1 NAME |
2 |
|
3 |
Message::DOM::DOMImplementation - manakai - The C<DOMImplementation> Interface |
4 |
|
5 |
=head1 SYNOPSIS |
6 |
|
7 |
use Message::DOM::DOMImplementation; |
8 |
my $impl = Message::DOM::DOMImplementation->new; |
9 |
|
10 |
my $doc = $impl->create_document; |
11 |
|
12 |
=head1 DESCRIPTION |
13 |
|
14 |
The C<Message::DOM::DOMImplementation> module conatins an |
15 |
implementation of C<DOMImplementation> interface as defined |
16 |
in the DOM Level 3 Core specification. |
17 |
|
18 |
This module is part of manakai. |
19 |
|
20 |
=head1 METHODS |
21 |
|
22 |
=over 4 |
23 |
|
24 |
=item I<$impl> = Message::DOM::DOMImplementation->new; |
25 |
|
26 |
Creates a new instance of the DOM implementation |
27 |
and returns it. |
28 |
|
29 |
=back |
30 |
|
31 |
Any methods defined for C<DOMImplementation> interface |
32 |
and other interface such as C<URIImplementation> can |
33 |
be invoked via the object returned by the C<new> method. |
34 |
For example, a DOM C<Document> object can be created by: |
35 |
|
36 |
$doc = $impl->create_document; |
37 |
|
38 |
=head1 SEE ALSO |
39 |
|
40 |
DOM Level 3 Core specification |
41 |
<http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-102161490>. |
42 |
|
43 |
L<Message::DOM::DOMImplementationRegistry>. |
44 |
|
45 |
=head1 AUTHOR |
46 |
|
47 |
Wakaba <w@suika.fam.cx>. |
48 |
|
49 |
=head1 LICENSE |
50 |
|
51 |
Copyright 2007 Wakaba <w@suika.fam.cx> |
52 |
|
53 |
This library is free software; you can redistribute it |
54 |
and/or modify it under the same terms as Perl itself. |
55 |
|
56 |
=cut |
57 |
|
58 |
## $Date:$ |