| Form-Factory documentation | Contained in the Form-Factory distribution. |
Form::Factory::Control::Role::AvailableChoices - Controls that list available choices
version 0.020
Controls that have a list of possible options to select from may implement this role.
The list of Form::Factory::Control::Choice objects.
Andrew Sterling Hanenkamp <hanenkamp@cpan.org>
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.
| Form-Factory documentation | Contained in the Form-Factory distribution. |
package Form::Factory::Control::Role::AvailableChoices; BEGIN { $Form::Factory::Control::Role::AvailableChoices::VERSION = '0.020'; } use Moose::Role; use Form::Factory::Control::Choice;
has available_choices => ( is => 'ro', isa => 'ArrayRef[Form::Factory::Control::Choice]', required => 1, );
1;