| XML-Toolkit documentation | Contained in the XML-Toolkit distribution. |
XML::Toolkit::MetaDescription - A class to ...
This documentation refers to version 0.01.
use XML::Toolkit::MetaDescription;
The XML::Toolkit::MetaDescription class implements ...
Modules used, version dependencies, core yes/no
Moose
Moose::Util::TypeConstraints
...
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; use Moose; use Moose::Util::TypeConstraints; use namespace::autoclean; extends 'MooseX::MetaDescription::Description'; has 'sort_order' => ( is => 'ro', isa => 'Int', default => sub { 0 } ); __PACKAGE__->meta->make_immutable; 1; __END__