Myco::Entity::Meta::Query - a Myco entity class


Myco documentation Contained in the Myco distribution.

Index


Code Index:

NAME

Top

Myco::Entity::Meta::Query - a Myco entity class

Repository

$Revision: 1.4 $ $Date: 2006/02/24 15:03:14 $

DESCRIPTION

Top

A class to prepare and store Tangram Query objects used to generate lists. Acts as a shell in the Myco::Entity::Meta (Myco::Entity::Meta) space to inherit from Myco::QueryTemplate (Myco::QueryTemplate).


Myco documentation Contained in the Myco distribution.

package Myco::Entity::Meta::Query;

###############################################################################
# $Id: Query.pm,v 1.4 2006/02/24 15:03:14 sommerb Exp $
###############################################################################

##############################################################################
# Dependencies
##############################################################################
# Module Dependencies and Compiler Pragma
use warnings;
use strict;
use Myco::Exceptions;

##############################################################################
# Inheritance & Introspection
##############################################################################
use base qw( Myco::QueryTemplate );
my $md = Myco::Entity::Meta->new( name => __PACKAGE__ );

##############################################################################
# Object Schema Activation and Metadata Finalization
##############################################################################
$md->activate_class;

1;
__END__