changed DateTime type constant to DateTimeObject
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Field / Password.pm
CommitLineData
7adfd53f 1package Reaction::UI::ViewPort::Field::Password;
2
3use Reaction::Class;
4
d9a3266f 5use Reaction::Types::Core qw(SimpleStr);
6
7adfd53f 7class Password is 'Reaction::UI::ViewPort::Field::String', which {
8
d9a3266f 9 has '+value' => (isa => SimpleStr);
6ab43711 10 #has '+layout' => (default => 'password');
7adfd53f 11
12};
13
6ab43711 141;
7adfd53f 15
16=head1 NAME
17
18Reaction::UI::ViewPort::Field::Password
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