line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package XML::NewsML_G2::Facet; |
2
|
|
|
|
|
|
|
|
3
|
18
|
|
|
18
|
|
119
|
use Moose; |
|
18
|
|
|
|
|
41
|
|
|
18
|
|
|
|
|
131
|
|
4
|
18
|
|
|
18
|
|
112786
|
use namespace::autoclean; |
|
18
|
|
|
|
|
41
|
|
|
18
|
|
|
|
|
165
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
with( |
7
|
|
|
|
|
|
|
'XML::NewsML_G2::Role::HasQCode', |
8
|
|
|
|
|
|
|
'XML::NewsML_G2::Role::HasTranslations' |
9
|
|
|
|
|
|
|
); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
__END__ |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
XML::NewsML_G2::Facet - a facet to be used in a facetted concept of the |
19
|
|
|
|
|
|
|
news item, taken from a standardized controlled vocabulary |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 SYNOPSIS |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
my $facet = XML::NewsML_G2::Facet->new |
24
|
|
|
|
|
|
|
(name => 'some aspect of the topic', |
25
|
|
|
|
|
|
|
qcode => 'something' |
26
|
|
|
|
|
|
|
); |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 AUTHOR |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Christian Eder C<< <christian.eder@apa.at> >> |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 LICENCE AND COPYRIGHT |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Copyright (c) 2019, APA-IT. All rights reserved. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
See L<XML::NewsML_G2> for the license. |