annotate Lib/IMPL/Class/DirectPropertyInfo.pm @ 375:441e84031c7b

docs
author cin
date Fri, 10 Jan 2014 16:33:00 +0400
parents 4ddb27ff4a0b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
4ddb27ff4a0b core refactoring
cin
parents: 276
diff changeset
4 use parent 'IMPL::Class::PropertyInfo';
4ddb27ff4a0b core refactoring
cin
parents: 276
diff changeset
5 our %CTOR = ('IMPL::Class::PropertyInfo' => '@_');
4ddb27ff4a0b core refactoring
cin
parents: 276
diff changeset
6
4ddb27ff4a0b core refactoring
cin
parents: 276
diff changeset
7 __PACKAGE__->mk_accessors(qw(fieldName directAccess));
4ddb27ff4a0b core refactoring
cin
parents: 276
diff changeset
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;