Dave Rolsky > Class-MOP-0.70_01 > Class::MOP::Module

Download:
Class-MOP-0.70_01.tar.gz

Dependencies

Annotate this POD

CPAN RT

New  1
Open  1
View Bugs
Report a bug
Module Version: 0.70_01   Source   Latest Release: Class-MOP-0.94

NAME ^

Class::MOP::Module - Module Meta Object

DESCRIPTION ^

This is an abstraction of a Perl 5 module, it is a superclass of Class::MOP::Class. A module essentially a package with metadata, in our case the version and authority.

METHODS ^

meta

Returns a metaclass for this package.

initialize ($package_name)

This will initialize a Class::MOP::Module instance which represents the module of $package_name.

version

This is a read-only attribute which returns the $VERSION of the package for the given instance.

authority

This is a read-only attribute which returns the $AUTHORITY of the package for the given instance.

identifier

This constructs a string of the name, version and authority.

AUTHORS ^

Stevan Little <stevan@iinteractive.com>

COPYRIGHT AND LICENSE ^

Copyright 2006-2008 by Infinity Interactive, Inc.

http://www.iinteractive.com

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.