| XML-Toolkit documentation | Contained in the XML-Toolkit distribution. |
XML::Toolkit::MetaDescription::Trait - A class to ...
This documentation refers to version 0.01.
use XML::Toolkit::MetaDescription::Trait;
The XML::Toolkit::MetaDescription::Trait class implements ...
Modules used, version dependencies, core yes/no
Moose::Role
XML::Toolkit::MetaDescription
...
None known currently, please email the author if you find any.
Chris Prather (perigrin@domain.tld)
Copyright 2009 by Chris Prather.
This software is free. It is licensed under the same terms as Perl itself.
| XML-Toolkit documentation | Contained in the XML-Toolkit distribution. |
package XML::Toolkit::MetaDescription::Trait; use Moose::Role; use namespace::autoclean; use XML::Toolkit::MetaDescription; with 'MooseX::MetaDescription::Meta::Trait'; has 'metadescription_classname' => ( is => 'rw', isa => 'Str', lazy => 1, default => 'XML::Toolkit::MetaDescription', ); package Moose::Meta::Attribute::Custom::Trait::XML; sub register_implementation { 'XML::Toolkit::MetaDescription::Trait' } 1; __END__