File: Metadata.pm

package info (click to toggle)
libwebservice-musicbrainz-perl 0.93-1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 316 kB
  • ctags: 116
  • sloc: perl: 1,023; makefile: 46
file content (65 lines) | stat: -rw-r--r-- 1,078 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package WebService::MusicBrainz::Response::Metadata;

use strict;
use base 'Class::Accessor';

our $VERSION = '0.93';

=head1 NAME

WebService::MusicBrainz::Response::Metadata

=head1 SYNOPSIS

=head1 DESCRIPTION

=head1 METHODS

All the methods listed below are accessor methods.  They can take a scalar argument to set the state of the object or without and argument, they will return that state if it is available.

=head2 generator()

=head2 created()

=head2 artist()

=head2 release()

=head2 release_group()

=head2 track()

=head2 artist_list()

=head2 release_list()

=head2 track_list()

=head2 score()

=cut

__PACKAGE__->mk_accessors(qw/generator created artist release release_group track label artist_list release_list track_list label_list score/);

=head1 AUTHOR

=over 4

=item Bob Faist <bob.faist@gmail.com>

=back

=head1 COPYRIGHT AND LICENSE

Copyright 2006-2009 by Bob Faist

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

=head1 SEE ALSO

http://wiki.musicbrainz.org/XMLWebService

=cut

1;