| Form-Factory documentation | Contained in the Form-Factory distribution. |
Form::Factory::Action::Role - Role implemented by action roles
version 0.020
package MyApp::Action::Foo;
use Form::Factory::Processor::Role;
has_control bar => (
type => 'text',
);
This is the role implemented by all form action roles. Do not use this directly, but use Form::Factory::Processor::Role, which performs the magic required to make your class implement this role.
Andrew Sterling Hanenkamp <hanenkamp@cpan.org>
Copyright 2010 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::Action::Role; BEGIN { $Form::Factory::Action::Role::VERSION = '0.020'; } use Moose::Role; use Carp ();
1;