line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package JIRA::REST::Class::Issue::Changelog::Change::Item; |
2
|
4
|
|
|
4
|
|
1885
|
use parent qw( JIRA::REST::Class::Abstract ); |
|
4
|
|
|
|
|
11
|
|
|
4
|
|
|
|
|
17
|
|
3
|
4
|
|
|
4
|
|
258
|
use strict; |
|
4
|
|
|
|
|
9
|
|
|
4
|
|
|
|
|
61
|
|
4
|
4
|
|
|
4
|
|
17
|
use warnings; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
87
|
|
5
|
4
|
|
|
4
|
|
63
|
use 5.010; |
|
4
|
|
|
|
|
12
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.11'; |
8
|
|
|
|
|
|
|
our $SOURCE = 'CPAN'; |
9
|
|
|
|
|
|
|
## $SOURCE = 'GitHub'; # COMMENT |
10
|
|
|
|
|
|
|
# the line above will be commented out by Dist::Zilla |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
# ABSTRACT: A helper class for L<JIRA::REST::Class|JIRA::REST::Class> that represents an individual item in an individual change to a JIRA issue as an object. |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
__PACKAGE__->mk_data_ro_accessors( |
15
|
|
|
|
|
|
|
qw/ field fieldtype from fromString to toString / ## |
16
|
|
|
|
|
|
|
); |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
#pod =accessor B<field> |
21
|
|
|
|
|
|
|
#pod |
22
|
|
|
|
|
|
|
#pod =accessor B<fieldtype> |
23
|
|
|
|
|
|
|
#pod |
24
|
|
|
|
|
|
|
#pod =accessor B<from> |
25
|
|
|
|
|
|
|
#pod |
26
|
|
|
|
|
|
|
#pod =accessor B<fromString> |
27
|
|
|
|
|
|
|
#pod |
28
|
|
|
|
|
|
|
#pod =accessor B<to> |
29
|
|
|
|
|
|
|
#pod |
30
|
|
|
|
|
|
|
#pod =accessor B<toString> |
31
|
|
|
|
|
|
|
#pod |
32
|
|
|
|
|
|
|
#pod =cut |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
__END__ |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=pod |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=encoding UTF-8 |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=for :stopwords Packy Anderson Alexandr Alexey Ciornii Melezhik Atlassian GreenHopper JRC |
41
|
|
|
|
|
|
|
ScriptRunner TODO aggregateprogress aggregatetimeestimate |
42
|
|
|
|
|
|
|
aggregatetimeoriginalestimate assigneeType avatar avatarUrls completeDate |
43
|
|
|
|
|
|
|
displayName duedate emailAddress endDate fieldtype fixVersions fromString |
44
|
|
|
|
|
|
|
genericized iconUrl isAssigneeTypeValid issueTypes issuekeys issuelinks |
45
|
|
|
|
|
|
|
issuetype jira jql lastViewed maxResults originalEstimate |
46
|
|
|
|
|
|
|
originalEstimateSeconds parentkey projectId rapidViewId remainingEstimate |
47
|
|
|
|
|
|
|
remainingEstimateSeconds resolutiondate sprintlist startDate |
48
|
|
|
|
|
|
|
subtaskIssueTypes timeSpent timeSpentSeconds timeestimate |
49
|
|
|
|
|
|
|
timeoriginalestimate timespent timetracking toString updateAuthor worklog |
50
|
|
|
|
|
|
|
workratio |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head1 NAME |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
JIRA::REST::Class::Issue::Changelog::Change::Item - A helper class for L<JIRA::REST::Class|JIRA::REST::Class> that represents an individual item in an individual change to a JIRA issue as an object. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head1 VERSION |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
version 0.11 |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head1 READ-ONLY ACCESSORS |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head2 B<field> |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=head2 B<fieldtype> |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 B<from> |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head2 B<fromString> |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=head2 B<to> |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head2 B<toString> |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=head1 RELATED CLASSES |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=over 2 |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
=item * L<JIRA::REST::Class|JIRA::REST::Class> |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=item * L<JIRA::REST::Class::Abstract|JIRA::REST::Class::Abstract> |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=back |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=head1 AUTHOR |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
Packy Anderson <packy@cpan.org> |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
This software is Copyright (c) 2017 by Packy Anderson. |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
This is free software, licensed under: |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
The Artistic License 2.0 (GPL Compatible) |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
=cut |