r21467@martha (orig r828): groditi | 2008-08-15 19:00:32 -0400
[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
81393881 7use namespace::clean -except => [ qw(meta) ];
8extends 'Reaction::UI::ViewPort::Field::String';
7adfd53f 9
7adfd53f 10
81393881 11
12has '+value' => (isa => SimpleStr);
13#has '+layout' => (default => 'password');
14
15__PACKAGE__->meta->make_immutable;
16
7adfd53f 17
6ab43711 181;
7adfd53f 19
20=head1 NAME
21
22Reaction::UI::ViewPort::Field::Password
23
24=head1 DESCRIPTION
25
26=head1 SEE ALSO
27
28=head2 L<Reaction::UI::ViewPort::Field>
29
30=head1 AUTHORS
31
32See L<Reaction::Class> for authors.
33
34=head1 LICENSE
35
36See L<Reaction::Class> for the license.
37
38=cut