line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package W3C::SOAP::WSDL::Document::Node; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# Created on: 2012-05-26 19:04:19 |
4
|
|
|
|
|
|
|
# Create by: Ivan Wills |
5
|
|
|
|
|
|
|
# $Id$ |
6
|
|
|
|
|
|
|
# $Revision$, $HeadURL$, $Date$ |
7
|
|
|
|
|
|
|
# $Revision$, $Source$, $Date$ |
8
|
|
|
|
|
|
|
|
9
|
1
|
|
|
1
|
|
1279
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
10
|
1
|
|
|
1
|
|
4907
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
28
|
|
11
|
1
|
|
|
1
|
|
6
|
use version; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
8
|
|
12
|
1
|
|
|
1
|
|
60
|
use English qw/ -no_match_vars /; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
extends 'W3C::SOAP::Document::Node'; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
our $VERSION = version->new('0.11'); |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
has '+parent_node' => ( |
19
|
|
|
|
|
|
|
isa => 'Maybe[W3C::SOAP::WSDL::Document::Node]', |
20
|
|
|
|
|
|
|
); |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
1; |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
__END__ |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 NAME |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
W3C::SOAP::WSDL::Document::Node - Base object for tags of a WSDL document |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 VERSION |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
This documentation refers to W3C::SOAP::WSDL::Document::Node version 0.11. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 SYNOPSIS |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
use W3C::SOAP::WSDL::Document::Node; |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
# Brief but working code example(s) here showing the most common usage(s) |
40
|
|
|
|
|
|
|
# This section will be as far as many users bother reading, so make it as |
41
|
|
|
|
|
|
|
# educational and exemplary as possible. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 DESCRIPTION |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 SUBROUTINES/METHODS |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head1 DIAGNOSTICS |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 CONFIGURATION AND ENVIRONMENT |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head1 DEPENDENCIES |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 INCOMPATIBILITIES |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head1 BUGS AND LIMITATIONS |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
There are no known bugs in this module. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
Please report problems to Ivan Wills (ivan.wills@gmail.com). |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
Patches are welcome. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head1 AUTHOR |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
Ivan Wills - (ivan.wills@gmail.com) |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
Copyright (c) 2012 Ivan Wills (14 Mullion Close, Hornsby Heights, NSW Australia 2077). |
75
|
|
|
|
|
|
|
All rights reserved. |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
This module is free software; you can redistribute it and/or modify it under |
78
|
|
|
|
|
|
|
the same terms as Perl itself. See L<perlartistic>. This program is |
79
|
|
|
|
|
|
|
distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
80
|
|
|
|
|
|
|
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
81
|
|
|
|
|
|
|
PARTICULAR PURPOSE. |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=cut |