Myco::Entity::Meta::UI::List - a Myco entity class


Myco documentation Contained in the Myco distribution.

Index


Code Index:

NAME

Top

Myco::Entity::Meta::UI::List - a Myco entity class

SYNOPSIS

Top

  use Myco::Entity::Meta::UI::List;

DESCRIPTION

Top

Used by the myco entity framework. Don't hack it unless you know what you're doing :_)

LICENSE AND COPYRIGHT

Top

SEE ALSO

Top

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__