branching
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Field / String.pm
CommitLineData
7adfd53f 1package Reaction::UI::ViewPort::Field::String;
2
3use Reaction::Class;
4
5class String is 'Reaction::UI::ViewPort::Field', which {
6
7 has '+value' => (isa => 'Str'); # accept over 255 chars in case, upstream
8 # constraint from model should catch it
6ab43711 9
10 #has '+layout' => (default => 'textfield');
7adfd53f 11
12};
13
6ab43711 141;
7adfd53f 15
16=head1 NAME
17
18Reaction::UI::ViewPort::Field::String
19
20=head1 DESCRIPTION
21
22=head1 SEE ALSO
23
24=head2 L<Reaction::UI::ViewPort::Field>
25
26=head1 AUTHORS
27
28See L<Reaction::Class> for authors.
29
30=head1 LICENSE
31
32See L<Reaction::Class> for the license.
33
34=cut