1 |
wakaba |
1.1 |
=head1 NAME |
2 |
|
|
|
3 |
|
|
Message::URI::URIReferemce - URI Reference Object Class |
4 |
|
|
|
5 |
|
|
=head1 SYNOPSIS |
6 |
|
|
|
7 |
|
|
## Invoke constructor via DOM Interface |
8 |
|
|
require Message::DOM::DOMImplementation; |
9 |
|
|
my $dom = Message::DOM::DOMImplementation->new; |
10 |
|
|
|
11 |
|
|
my $uri = $dom->create_uri_reference ($uri_string); |
12 |
|
|
|
13 |
|
|
## Invoke constructor directly |
14 |
|
|
require Message::URI::URIReference; |
15 |
|
|
|
16 |
|
|
my $uri = Message::DOM::DOMImplementation |
17 |
|
|
->create_uri_reference ($uri_string); |
18 |
|
|
|
19 |
|
|
## Methods and attributes |
20 |
|
|
print $uri->uri_scheme; |
21 |
|
|
print $uri->uri_authority; |
22 |
|
|
print $uri->get_absolute_reference ($base_uri); |
23 |
|
|
|
24 |
|
|
=head1 CONSTRUCTORS |
25 |
|
|
|
26 |
|
|
@@ TBD |
27 |
|
|
|
28 |
|
|
=head1 ATTRIBUTES |
29 |
|
|
|
30 |
|
|
@@ TBD |
31 |
|
|
|
32 |
|
|
=head1 METHODS |
33 |
|
|
|
34 |
|
|
@@ TBD |
35 |
|
|
|
36 |
|
|
=head1 SEE ALSO |
37 |
|
|
|
38 |
|
|
Manakai DOM URI Module. |
39 |
|
|
|
40 |
|
|
L<Message::DOM::DOMImplementation>. |
41 |
|
|
|
42 |
|
|
=head1 AUTHOR |
43 |
|
|
|
44 |
|
|
Wakaba <w@suika.fam.cx>. |
45 |
|
|
|
46 |
|
|
=head1 LICENSE |
47 |
|
|
|
48 |
|
|
Copyright 2007 Wakaba <w@suika.fam.cx> |
49 |
|
|
|
50 |
|
|
This library is free software; you can redistribute it |
51 |
|
|
and/or modify it under the same terms as Perl itself. |
52 |
|
|
|
53 |
|
|
=cut |
54 |
|
|
|
55 |
|
|
## $Date: 2007/07/29 09:44:24 $ |