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__