Mercurial > pub > Impl
annotate Lib/IMPL/Object/Accessor.pm @ 148:e6447ad85cb4
DOM objects now have a schema and schemaSource properties
RegExp now can launder data
Improved post to DOM transformation (multiple values a now supported)
Added new axes to navigation queries: ancestor and descendant
minor changes and bug fixes
author | wizard |
---|---|
date | Mon, 16 Aug 2010 08:26:44 +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; |