|  |  
 |   |   
 NAMEModule::Collect::Package - package abstract class for Module::Collect SYNOPSIS  use Module::Collect::Package;
  my $package = Module::Collect::Package->new(
      path    => 'foo/bar/baz.pm',
      package => 'Baz',
  );
  print $package->path;    # foo/bar/baz.pm
  print $package->package; # Baz
  $package->require;       # same require 'foo/bar/baz.pm';
  $package->new;           # same Baz->new;
AUTHORlopnor Kazuhiro Osawa SEE ALSOModule::Collect LICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. 
 
 |