|
NAMEModule::Collect::Package - package abstract class for Module::CollectSYNOPSISuse 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; AUTHORlopnorKazuhiro Osawa SEE ALSOModule::CollectLICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |