Mercurial > pub > Impl
annotate Lib/IMPL/Class/DirectPropertyInfo.pm @ 353:feeb3bc4a818
corrected error handling while loading templates
corrected variables lookup in controls
updated handles to use the new view features
author | cin |
---|---|
date | Fri, 11 Oct 2013 15:49:04 +0400 |
parents | 4ddb27ff4a0b |
children |
rev | line source |
---|---|
276
8a5da17d7ef9
*IMPL::Class refactoring property definition mechanism (incomplete).
sergey
parents:
diff
changeset
|
1 package IMPL::Class::DirectPropertyInfo; |
8a5da17d7ef9
*IMPL::Class refactoring property definition mechanism (incomplete).
sergey
parents:
diff
changeset
|
2 use strict; |
8a5da17d7ef9
*IMPL::Class refactoring property definition mechanism (incomplete).
sergey
parents:
diff
changeset
|
3 |
278 | 4 use parent 'IMPL::Class::PropertyInfo'; |
5 our %CTOR = ('IMPL::Class::PropertyInfo' => '@_'); | |
6 | |
7 __PACKAGE__->mk_accessors(qw(fieldName directAccess)); | |
8 | |
276
8a5da17d7ef9
*IMPL::Class refactoring property definition mechanism (incomplete).
sergey
parents:
diff
changeset
|
9 |
8a5da17d7ef9
*IMPL::Class refactoring property definition mechanism (incomplete).
sergey
parents:
diff
changeset
|
10 1; |