view Lib/IMPL/ORM/Schema/ValueType.pm @ 241:f48a1a9f4fa2

+Added ViewResult to allow implementation of the view environment. *TTDocuments now storing creation parameters *TTControls automatically propagating layout and title meta to their attributes +Added UnauthorizaedException web exception *minor fixes
author sergey
date Thu, 18 Oct 2012 04:49:55 +0400
parents 4267a2ac3d46
children
line wrap: on
line source

package IMPL::ORM::Schema::ValueType;

use strict;

use parent qw(IMPL::DOM::Node);

our %CTOR = (
    'IMPL::DOM::Node' => sub { nodeName => 'ValueType' }
);

use IMPL::Class::Property;

BEGIN {
    public property typeName => prop_all;
    public property typeReflected => prop_all;
}

sub CTOR {
    my ($this,$typeName,$typeReflected) = @_;
    
    $this->typeName($typeName);
    $this->typeReflected($typeReflected);
}

1;

__END__

=pod

=cut