Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / i486-linux-gnu-thread-multi / XML / LibXML / Comment.pod
CommitLineData
3fea05b9 1=head1 NAME
2
3XML::LibXML::Comment - XML::LibXML Comment Class
4
5=head1 SYNOPSIS
6
7
8
9 use XML::LibXML;
10 # Only methods specific to Comment nodes are listed here,
11 # see XML::LibXML::Node manpage for other methods
12
13 $node = XML::LibXML::Comment( $content );
14
15=head1 DESCRIPTION
16
17This class provides all functions of L<<<<<< XML::LibXML::Text >>>>>>, but for comment nodes. This can be done, since only the output of the node
18types is different, but not the data structure. :-)
19
20
21=head1 METHODS
22
23The class inherits from L<<<<<< XML::LibXML::Node >>>>>>. The documentation for Inherited methods is not listed here.
24
25Many functions listed here are extensively documented in the DOM Level 3 specification (L<<<<<< http://www.w3.org/TR/DOM-Level-3-Core/ >>>>>>). Please refer to the specification for extensive documentation.
26
27=over 4
28
29=item new
30
31 $node = XML::LibXML::Comment( $content );
32
33The constructor is the only provided function for this package. It is required,
34because I<<<<<< libxml2 >>>>>> treats text nodes and comment nodes slightly differently.
35
36
37
38=back
39
40=head1 AUTHORS
41
42Matt Sergeant,
43Christian Glahn,
44Petr Pajas
45
46
47=head1 VERSION
48
491.70
50
51=head1 COPYRIGHT
52
532001-2007, AxKit.com Ltd.
54
552002-2006, Christian Glahn.
56
572006-2009, Petr Pajas.
58
59=cut