NAME
Myco::Entity::Meta::UI::View - a Myco entity class
SYNOPSIS
use Myco::Entity::Meta::UI::View;
DESCRIPTION
Used by the myco entity framework. Don't hack it unless you know what you're doing :_)
ATTRIBUTES
Attributes may be initially set during object construction (with new()
) but otherwise are accessed solely through accessor methods. Typical usage:
Set attribute value
$obj->set_attribute($value);
Check functions (see Class::Tangram) perform data validation. If there is any concern that the set method might be called with invalid data then the call should be wrapped in an
eval
block to catch exceptions that would result.Get attribute value
$value = $obj->get_attribute;
A listing of available attributes follows:
fields
type: hash ref
layout
type: array ref
ADDED CLASS / INSTANCE METHODS
None
LICENSE AND COPYRIGHT
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.
AUTHORS
Charles Owens <czbsd@cpan.org>
SEE ALSO
Myco::Entity::Meta::UI::View::Test, Myco::Entity, Myco, Tangram, Class::Tangram, myco-mkentity