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

use Reaction::Class;

class Number is 'Reaction::UI::ViewPort::Field::Number', which {
  does 'Reaction::UI::ViewPort::Field::Role::Mutable::Simple';

  implements adopt_value_string => as {
    my ($self) = @_;
    $self->value($self->value_string);
  };
};

1;