Mercurial > pub > Impl
view Lib/IMPL/Class/Property.pm @ 276:8a5da17d7ef9
*IMPL::Class refactoring property definition mechanism (incomplete).
author | sergey |
---|---|
date | Thu, 31 Jan 2013 17:37:44 +0400 |
parents | 6253872024a4 |
children | 4ddb27ff4a0b |
line wrap: on
line source
package IMPL::Class::Property; use strict; use parent qw(Exporter); BEGIN { our @EXPORT = qw(property prop_get prop_set owner_set prop_none prop_all prop_list CreateProperty); } use IMPL::lang qw(:hash); use IMPL::Const qw(:prop); use Carp qw(carp); require IMPL::Class::Memeber; sub import { __PACKAGE__->export_to_level(1,@_); IMPL::Class::Member->export_to_level(1,@_); } sub prop_get { 1 }; sub prop_set { 2 }; sub owner_set { 10 }; sub prop_none { 0 }; sub prop_all { 3 }; sub prop_list { 4 }; sub property($$) { my ($propName,$attributes) = @_; $attributes = { get => $attributes & PROP_GET, set => $attributes & PROP_SET, isList => $attributes & PROP_LIST } unless ref $attributes; return hashMerge ( $attributes, { -implementor => 'ImplementProperty', name => $propName, class => scalar(caller), } ); } sub CreateProperty { my ($class,$propName,$attributes) = @_; carp "Using create property is deprecated, use ImplementProperty instead"; $class->ImplementProperty($propName,$attributes); }; 1;