| Myco documentation | Contained in the Myco distribution. |
Myco::Entity::Meta::UI::List - a Myco entity class
use Myco::Entity::Meta::UI::List;
Used by the myco entity framework. Don't hack it unless you know what you're doing :_)
Copyright (c) 2006 the myco project. All rights reserved. This software is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Myco::Entity::Meta::UI::List::Test (Myco::Entity::Meta::UI::List::Test), Myco::Entity, Myco (Myco), Tangram, Class::Tangram, myco-mkentity (mkentity)
| Myco documentation | Contained in the Myco distribution. |
package Myco::Entity::Meta::UI::List; ############################################################################### # $Id: List.pm,v 1.6 2006/03/19 19:34:08 sommerb Exp $ # # See license and copyright near the end of this file. ###############################################################################
############################################################################## # Dependencies ############################################################################## # Module Dependencies and Compiler Pragma use warnings; use strict; ############################################################################## # Inheritance ############################################################################## use base qw(Class::Tangram); ### Object Schema Definition our $schema = { fields => { transient => { inline_sep => {}, layout => {}, type => {}, }, } }; Class::Tangram::import_schema(__PACKAGE__); 1; __END__