NAME
Module::Collect::Package - package abstract class for Module::Collect
SYNOPSIS
my
$package
= Module::Collect::Package->new(
path
=>
'foo/bar/baz.pm'
,
package
=>
'Baz'
,
);
$package
->path;
# foo/bar/baz.pm
$package
->
package
;
# Baz
$package
->
require
;
# same require 'foo/bar/baz.pm';
$package
->new;
# same Baz->new;
AUTHOR
lopnor
Kazuhiro Osawa
SEE ALSO
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.