line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Java::Swing::PerlRealPackages; |
2
|
8
|
|
|
8
|
|
44
|
use strict; use warnings; |
|
8
|
|
|
8
|
|
16
|
|
|
8
|
|
|
|
|
258
|
|
|
8
|
|
|
|
|
38
|
|
|
8
|
|
|
|
|
14
|
|
|
8
|
|
|
|
|
518
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
# Generally, only standard packages which need special treatment should be |
5
|
|
|
|
|
|
|
# listed in this file (for some definition of standard). |
6
|
|
|
|
|
|
|
# For local packages (the ones you can't or won't share), use |
7
|
|
|
|
|
|
|
# PerlRealLocalPackages.pm. The later ships empty, while this file could |
8
|
|
|
|
|
|
|
# change with any release. If you add something to your local package |
9
|
|
|
|
|
|
|
# list, please send it in. |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
# Note that most packages are not really .pm files on the disk, instead |
12
|
|
|
|
|
|
|
# they are manufactured by Swing.pm. If you want Swing to manufacture |
13
|
|
|
|
|
|
|
# something for you, list it in PerlFakeLocalPackages.pm. |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
# Note that package names are not prefaced by Java::Swing. This |
16
|
|
|
|
|
|
|
# it for user convenience. Do store them in Java/Swing/Name.pm, |
17
|
|
|
|
|
|
|
# but list the package as Name. All names should be Swing class names. |
18
|
|
|
|
|
|
|
# In the rare event of name conflicts, resolve them for your users |
19
|
|
|
|
|
|
|
# here. For example, suppose there were two classes named |
20
|
|
|
|
|
|
|
# javax.swing.Phil and java.awt.Phil, in the list below call one |
21
|
|
|
|
|
|
|
# swing::Phil and the other awt::Phil. Then store them in |
22
|
|
|
|
|
|
|
# Java/Swing/swing/Phil.pm and Java/Swing/awt/Phil.pm. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
our @packages = qw( |
25
|
|
|
|
|
|
|
Timer |
26
|
|
|
|
|
|
|
SwingConstants |
27
|
|
|
|
|
|
|
GridBagConstraints |
28
|
|
|
|
|
|
|
); |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
1; |