aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/ViewPort/Field/Integer.pm
blob: 8a050a4d248199d6a4a8123591722f7f4eb611c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Reaction::UI::ViewPort::Field::Integer;

use Reaction::Class;
use namespace::clean -except => [ qw(meta) ];
use MooseX::Types::Moose qw/Int/;

extends 'Reaction::UI::ViewPort::Field';

has '+value' => (isa => Int);

__PACKAGE__->meta->make_immutable;

1;