The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package XML::Toolkit::RNG::Value;
use Moose;
use namespace::autoclean;
use XML::Toolkit;

has 'text' => (
     isa         => 'Str',
     is          => 'rw',   
     traits      => [ 'XML'],
     description => {
        node_type => "character",
        sort_order => 0,
     },
);
1;

__END__