MooseX::MetaDescription::Meta::Trait - Custom class meta-trait for meta-descriptions |
MooseX::MetaDescription::Meta::Trait - Custom class meta-trait for meta-descriptions
package Foo; use Moose;
has 'baz' => ( # apply this as a trait to your attribute traits => [ 'MooseX::MetaDescription::Meta::Trait' ], is => 'ro', isa => 'Str', default => sub { 'Foo::baz' }, description => { bar => 'Foo::baz::bar', gorch => 'Foo::baz::gorch', } );
This is the core of the Meta Description functionality, it is a role that is done by both the MooseX::MetaDescription::Meta::Attribute manpage and the MooseX::MetaDescription::Meta::Class manpage and can be used on it's own as a meta-attribute trait.
HASH
ref is stored here.
metadescription_classname
it is generated lazily and is also read-only. In general you will never
need to set this yourself, but simply set metadescription_classname
and it will all just work.
All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.
Stevan Little <stevan.little@iinteractive.com>
Copyright 2008 Infinity Interactive, Inc.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
MooseX::MetaDescription::Meta::Trait - Custom class meta-trait for meta-descriptions |