Mercurial > pub > Impl
annotate Lib/IMPL/Class/DirectPropertyInfo.pm @ 347:3eafa6fefa9f
sync
author | cin |
---|---|
date | Mon, 30 Sep 2013 17:36:17 +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; |