| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
1
|
|
|
1
|
|
4
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
63
|
|
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
push(@::bean_desc, { |
|
4
|
|
|
|
|
|
|
bean_opt => { |
|
5
|
|
|
|
|
|
|
abstract => 'Abstract PerlBean method information', |
|
6
|
|
|
|
|
|
|
package => 'PerlBean::Method::Constructor', |
|
7
|
|
|
|
|
|
|
use_perl_version => 5.005, |
|
8
|
|
|
|
|
|
|
base => [ qw(PerlBean::Method) ], |
|
9
|
|
|
|
|
|
|
description => <
|
|
10
|
|
|
|
|
|
|
C class for bean constructor method information. This is a subclass from C with the purpose to differentiate between plain methods and constructors. |
|
11
|
|
|
|
|
|
|
EOF |
|
12
|
|
|
|
|
|
|
short_description => 'contains bean constructor method information', |
|
13
|
|
|
|
|
|
|
# synopsis => '', |
|
14
|
|
|
|
|
|
|
}, |
|
15
|
|
|
|
|
|
|
attr_opt => [ |
|
16
|
|
|
|
|
|
|
], |
|
17
|
|
|
|
|
|
|
meth_opt => [ |
|
18
|
|
|
|
|
|
|
], |
|
19
|
|
|
|
|
|
|
} ); |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |