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

use Reaction::Class;

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

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

};

1;