Mercurial > pub > Impl
annotate Lib/IMPL/Object.pm @ 204:d63f9a92d6d4
+IMPL::Config::Include - simple way to include external config
*IMPL::Web::Handler::TTView - finished template selecting mechanism (not tested)
author | sergey |
---|---|
date | Wed, 02 May 2012 17:42:47 +0400 |
parents | d1676be8afcc |
children | 6d8092d8ce1b |
rev | line source |
---|---|
49 | 1 package IMPL::Object; |
2 use strict; | |
3 | |
165 | 4 use parent qw(IMPL::Object::Abstract); |
49 | 5 |
6 sub surrogate { | |
7 bless {}, ref $_[0] || $_[0]; | |
8 } | |
9 | |
180 | 10 __PACKAGE__->static_accessor( propertyInfoClass => 'IMPL::Class::DirectPropertyInfo' ); |
11 | |
49 | 12 sub new { |
13 my $class = shift; | |
14 my $self = bless {}, ref($class) || $class; | |
15 $self->callCTOR(@_); | |
16 | |
17 $self; | |
18 } | |
19 | |
20 sub _PropertyImplementor { | |
21 'IMPL::Class::Property::Direct' | |
22 } | |
23 | |
53 | 24 1; |
25 | |
26 __END__ | |
27 | |
49 | 28 =pod |
53 | 29 |
148
e6447ad85cb4
DOM objects now have a schema and schemaSource properties
wizard
parents:
64
diff
changeset
|
30 =head1 SINOPSYS |
49 | 31 |
64 | 32 =begin code |
33 | |
49 | 34 package Foo; |
165 | 35 use parent qw(IMPL::Object); |
49 | 36 |
37 sub CTOR { | |
38 my ($this,$arg) = @_; | |
39 print "Foo: $arg\n"; | |
40 } | |
41 | |
42 package Bar; | |
165 | 43 use parent qw(IMPL::Object); |
49 | 44 |
45 sub CTOR { | |
46 my ($this,$arg) = @_; | |
47 print "Bar: $arg\n"; | |
48 } | |
49 | |
50 package Baz; | |
165 | 51 use parent qw(Foo Bar); |
49 | 52 |
53 our %CTOR = ( | |
54 Foo => sub { my %args = @_; $args{Mazzi}; }, | |
55 Bar => sub { my %args = @_; $args{Fugi}; } | |
56 ); | |
57 | |
58 package Composite; | |
165 | 59 use parent qw(Baz Foo Bar); |
49 | 60 |
61 our %CTOR = ( | |
62 Foo => undef, | |
63 Bar => undef | |
64 ); | |
65 | |
66 sub CTOR { | |
67 my ($this,%args) = @_; | |
68 | |
69 print "Composite: $args{Text}\n"; | |
70 } | |
71 | |
72 package main; | |
73 | |
74 my $obj = new Composite( | |
75 Text => 'Hello World!', | |
76 Mazzi => 'Mazzi', | |
77 Fugi => 'Fugi' | |
78 ); | |
79 | |
80 # will print | |
81 # | |
82 # Foo: Mazzi | |
83 # Bar: Fugi | |
84 # Bar: | |
85 # Composite: Hello World! | |
86 | |
64 | 87 =end code |
88 | |
53 | 89 =head1 Description |
90 | |
180 | 91 Базовый класс для объектов, основанных на хеше. |
49 | 92 |
53 | 93 =head1 Members |
49 | 94 |
53 | 95 =over |
49 | 96 |
97 =item operator C<new>(@args) | |
98 | |
180 | 99 Создает экземпляр объекта и вызывает конструктор с параметрами @args. |
49 | 100 |
101 =item operator C<surrogate>() | |
102 | |
180 | 103 Создает неинициализированный экземпляр объекта. |
49 | 104 |
105 =back | |
106 | |
53 | 107 =head1 Cavearts |
49 | 108 |
180 | 109 Нужно заметить, что директива C<use parent> работает не совсем прозрачно, если в нашем примере |
110 класс C<Composite> наследуется от C<Baz>, а затем C<Foo>, то наследование от | |
111 C<Foo> не произойдет поскольку он уже имеется в C<Baz>. Вот не задача:) | |
49 | 112 |
113 =cut |