Mercurial > pub > Impl
view Lib/IMPL/Class/AccessorPropertyInfo.pm @ 323:b56b1ec33b59
minor changes to support JSON in transformation from a query to an object
author | sergey |
---|---|
date | Thu, 23 May 2013 18:40:26 +0400 |
parents | 4ddb27ff4a0b |
children |
line wrap: on
line source
package IMPL::Class::AccessorPropertyInfo; use strict; BEGIN { our @ISA = qw(IMPL::Class::PropertyInfo); } require IMPL::Class::PropertyInfo; our %CTOR = ('IMPL::Class::PropertyInfo' => '@_'); __PACKAGE__->mk_accessors(qw(fieldName)); 1;