MooseX::Role::Parameterized::Meta::Trait::Parameterizable - trait for parameterizable roles |
MooseX::Role::Parameterized::Meta::Trait::Parameterizable - trait for parameterizable roles
version 1.08
This is the trait that is applied to the metaclass for parameterizable roles, roles that have their parameters currently unbound. These are the roles that you use Moose/with, but instead of composing the parameterizable role, we construct a new parameterized role (the MooseX::Role::Parameterized::Meta::Role::Parameterized manpage) and use that new parameterized role instead.
The name of the class that will be used to construct the parameterized role.
The name of the class that will be used to construct the parameters object.
A metaclass representing this role's parameters. It will be an anonymous subclass of parameters_class. Each call to parameter in the MooseX::Role::Parameters manpage adds an attribute to this metaclass.
When this role is consumed, the parameters object will be instantiated using this metaclass.
A code reference that is used to generate a role based on the parameters provided by the consumer. The user usually specifies it using the role in the MooseX::Role::Parameterized manpage keyword.
Delegates to add_attribute in the Moose::Meta::Class manpage on the parameters_metaclass object.
Creates a new the MooseX::Role::Parameterized::Parameters manpage object using metaclass parameters_metaclass.
The arguments are those specified by the consumer as parameter values.
This method generates and returns a new instance of parameterized_role_metaclass. It can take any combination of three named arguments:
A consumer metaobject, if available.
Overrides apply in the Moose::Meta::Role manpage to automatically generate the parameterized role.
Shawn M Moore <code@sartak.org>
This software is copyright (c) 2008 by Shawn M Moore.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
MooseX::Role::Parameterized::Meta::Trait::Parameterizable - trait for parameterizable roles |