File Coverage

blib/lib/Yahoo/Marketing/RangeDefinitionType.pm
Criterion Covered Total %
statement 7 9 77.7
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 12 83.3


line stmt bran cond sub pod time code
1             package Yahoo::Marketing::RangeDefinitionType;
2             # Copyright (c) 2009 Yahoo! Inc. All rights reserved.
3             # The copyrights to the contents of this file are licensed under the Perl Artistic License (ver. 15 Aug 1997)
4              
5 2     2   46852 use strict; use warnings;
  2     2   4  
  2         62  
  2         11  
  2         3  
  2         48  
6              
7 2     2   1112 use Yahoo::Marketing::BucketType;
  0            
  0            
8             use base qw/Yahoo::Marketing::ComplexType/;
9              
10             =head1 NAME
11              
12             Yahoo::Marketing::RangeDefinitionType - an object to represent a Yahoo Marketing RangeDefinitionType.
13              
14             =cut
15              
16             sub _user_setable_attributes {
17             return ( qw/
18             bucket
19             market
20             rangeName
21             / );
22             }
23              
24             sub _read_only_attributes {
25             return ( qw/
26             / );
27             }
28              
29             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
30             __PACKAGE__->_read_only_attributes
31             );
32              
33              
34              
35             1;
36             =head1 SYNOPSIS
37              
38             See L for documentation of the various data objects.
39              
40              
41             =head2 new
42              
43             Creates a new instance
44              
45             =cut
46              
47             =head1 METHODS
48              
49             =head2 get/set methods
50              
51             =over 8
52              
53             bucket
54             market
55             rangeName
56              
57             =back
58              
59             =head2 get (read only) methods
60              
61             =over 8
62              
63              
64             =back
65              
66             =cut
67