package Form::Factory::Control::Role::ListValue; BEGIN { $Form::Factory::Control::Role::ListValue::VERSION = '0.020'; } use Moose::Role; excludes qw( Form::Factory::Control::Role::BooleanValue Form::Factory::Control::Role::ScalarValue ); =head1 NAME Form::Factory::Control::Role::ListValue - list-valued controls =head1 VERSION version 0.020 =head1 DESCRIPTION Implemented by control that are multi-values. =head1 METHODS =head2 default_isa List valued controls are "ArrayRef[Str]" by default. =cut use constant default_isa => 'ArrayRef[Str]'; =head1 AUTHOR Andrew Sterling Hanenkamp C<< >> =head1 COPYRIGHT AND LICENSE Copyright 2009 Qubling Software LLC. This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. =cut 1;