Mercurial > pub > Impl
view Lib/IMPL/Class/AccessorPropertyInfo.pm @ 359:833e663796c4
TTView: added view variable to pass rendering context between controls
TTView: display function renamed to display_for
WebResource: resources now marked with roles for searching a desired resource by a role in the resource chain
author | sergey |
---|---|
date | Mon, 25 Nov 2013 02:19:31 +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;