MooseX::MultiInitArg::Attribute - A custom attribute metaclass to add multiple init arguments to your attributes.


MooseX-MultiInitArg documentation Contained in the MooseX-MultiInitArg distribution.

Index


Code Index:

NAME

Top

MooseX::MultiInitArg::Attribute - A custom attribute metaclass to add multiple init arguments to your attributes.

DESCRIPTION

Top

This is a custom attribute metaclass which you can add to an attribute so that you can specify a list of aliases for your attribute to be recognized as constructor arguments. Use MooseX::MultiInitArg::Trait for a way to use this with other attribute modifiers.

AUTHOR

Top

Paul Driver, <frodwith at cpan.org>

COPYRIGHT AND LICENSE

Top


MooseX-MultiInitArg documentation Contained in the MooseX-MultiInitArg distribution.

package MooseX::MultiInitArg::Attribute;
use Moose;

extends q(Moose::Meta::Attribute);
with q(MooseX::MultiInitArg::Trait);

no Moose;

package # Move along, PAUSE...
	Moose::Meta::Attribute::Custom::MultiInitArg;

sub register_implementation { q(MooseX::MultiInitArg::Attribute) }

1;

__END__