File Coverage

blib/lib/Java/Swing/PerlFakeLocalPackages.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Java::Swing::PerlFakeLocalPackages;
2 8     8   35 use strict; use warnings;
  8     8   13  
  8         215  
  8         36  
  8         12  
  8         387  
3              
4             # This is the place to list packages that are not in PerlFakePackages.pm.
5             # In particular, these are packages for which the manufactured module
6             # made on the fly by Swing.pm is enough. If you need something special
7             # enough to require hand coding, list your package in PerlRealLocalPackages.pm
8             #
9             # The same ideas apply, namely:
10              
11             # Note that package names are not prefaced by Java::Swing. This
12             # it for user convenience. Do store them in Java/Swing/Name.pm,
13             # but list the package as Name. All names should be Swing class names.
14             # In the rare event of name conflicts, resolve them for your users
15             # here. For example, suppose there were two classes named
16             # javax.swing.Phil and java.awt.Phil, in the list below call one
17             # swing::Phil and the other awt::Phil. Then store them in
18             # Java/Swing/swing/Phil.pm and Java/Swing/awt/Phil.pm.
19              
20             our @local_packages = qw(
21             );
22              
23             1;