aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/Meta/InterfaceModel/Object/ParameterAttribute.pm
blob: ebe16e105916a0239a8a1fd696bd787350e37bc1 (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
44
45
46
package Reaction::Meta::InterfaceModel::Object::ParameterAttribute;

use Reaction::Class;

use namespace::clean -except => [ qw(meta) ];
extends 'Reaction::Meta::Attribute';


has domain_model => (
  isa => 'Str',
  is => 'ro',
  predicate => 'has_domain_model'
);

has orig_attr_name => (
  isa => 'Str',
  is => 'ro',
  predicate => 'has_orig_attr_name'
);
sub new { shift->SUPER::new(@_); }; # work around immutable
__PACKAGE__->meta->make_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