Mercurial > pub > Impl
annotate Lib/IMPL/Object/Accessor.pm @ 102:cf3b6ef2be22
Schema beta version
author | wizard |
---|---|
date | Fri, 07 May 2010 08:05:23 +0400 |
parents | b0c068da93ac |
children | 4267a2ac3d46 |
rev | line source |
---|---|
49 | 1 package IMPL::Object::Accessor; |
2 use strict; | |
3 use base qw(IMPL::Object::Abstract Class::Accessor IMPL::Class::Meta); | |
4 | |
5 sub new { | |
6 my $class = shift; | |
7 my $self = $class->Class::Accessor::new( @_ == 1 && ref $_[0] && UNIVERSAL::isa($_[0],'HASH') ? $_[0] : ()); | |
8 $self->callCTOR(@_); | |
9 return $self; | |
10 } | |
11 | |
12 sub surrogate { | |
13 $_[0]->Class::Accessor::new; | |
14 } | |
60
b0c068da93ac
Lazy activation for the configuration objects (final concept)
wizard
parents:
49
diff
changeset
|
15 |
b0c068da93ac
Lazy activation for the configuration objects (final concept)
wizard
parents:
49
diff
changeset
|
16 sub _PropertyImplementor { |
b0c068da93ac
Lazy activation for the configuration objects (final concept)
wizard
parents:
49
diff
changeset
|
17 'IMPL::Class::Property::Accessor' |
b0c068da93ac
Lazy activation for the configuration objects (final concept)
wizard
parents:
49
diff
changeset
|
18 } |
49 | 19 1; |