aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/Meta/InterfaceModel/Object/ParameterAttribute.pm
blob: 835fa097ffb2df98bde91d90fc674f80bc16c8a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package Reaction::Meta::InterfaceModel::Object::ParameterAttribute;

use Reaction::Class;

class ParameterAttribute is 'Reaction::Meta::Attribute', which {
  has domain_model => (
    isa => 'Str',
    is => 'ro',
    predicate => 'has_domain_model'
  );

  has orig_attr_name => (
    isa => 'Str',
    is => 'ro',
    predicate => 'has_orig_attr_name'
  );

  implements new => as { shift->SUPER::new(@_); }; # work around immutable
};

1;

=head1 NAME

Reaction::Meta::InterfaceModel::Object::ParameterAttribute

=head1 DESCRIPTION

=head1 ATTRIBUTES

=head2 domain_model

=head2 orig_attr_name

=head1 AUTHORS

See L<Reaction::Class> for authors.

=head1 LICENSE

See L<Reaction::Class> for the license.

=cut