revert r620
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Field / Mutable / Integer.pm
CommitLineData
ddccc6a2 1package Reaction::UI::ViewPort::Field::Mutable::Integer;
2
3use Reaction::Class;
4
5class Integer is 'Reaction::UI::ViewPort::Field::Integer', which {
62ffa273 6 does 'Reaction::UI::ViewPort::Field::Role::Mutable::Simple';
7
8 implements adopt_value_string => as {
9 my ($self) = @_;
10 $self->value($self->value_string);
11 };
12
ddccc6a2 13};
14
151;