XML::Toolkit::MetaDescription - A class to ...


XML-Toolkit documentation Contained in the XML-Toolkit distribution.

Index


Code Index:

NAME

Top

XML::Toolkit::MetaDescription - A class to ...

VERSION

Top

This documentation refers to version 0.01.

SYNOPSIS

Top

use XML::Toolkit::MetaDescription;

DESCRIPTION

Top

The XML::Toolkit::MetaDescription class implements ...

SUBROUTINES / METHODS

Top

DEPENDENCIES

Top

Modules used, version dependencies, core yes/no

Moose

Moose::Util::TypeConstraints

NOTES

Top

...

BUGS AND LIMITATIONS

Top

None known currently, please email the author if you find any.

AUTHOR

Top

Chris Prather (perigrin@domain.tld)

LICENCE

Top

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__