NAME
PerlBean::Collection - contains a collection of PerlBean objects
SYNOPSIS
use strict;
use PerlBean;
use PerlBean::Collection;
use PerlBean::Attribute::Factory;
my $bean = PerlBean->new( {
package => 'Athlete',
} );
my $factory = PerlBean::Attribute::Factory->new();
my $attr = $factory->create_attribute( {
method_factory_name => 'name',
short_description => 'the name of the athlete',
} );
$bean->add_method_factory($attr);
my $bean2 = PerlBean->new( {
package => 'Cyclist',
base => [ qw(Athlete)],
} );
my $factory = PerlBean::Attribute::Factory->new();
my $attr2 = $factory->create_attribute( {
method_factory_name => 'cycle',
short_description => 'the cyclist\'s cycle',
} );
$bean2->add_method_factory($attr2);
my $collection = PerlBean::Collection->new();
$collection->add_perl_bean($bean);
$collection->add_perl_bean($bean2);
$collection->write('tmp');
ABSTRACT
Code hierarchy generation for bean like Perl modules
DESCRIPTION
PerlBean::Collection contains a collection of PerlBean objects in order to generate an hierarchy of Perl modules.
CONSTRUCTOR
- new( [ OPT_HASH_REF ] )
-
Creates a new
PerlBean::Collectionobject.OPT_HASH_REFis a hash reference used to pass initialization options. On error an exceptionError::Simpleis thrown.Options for
OPT_HASH_REFmay include:license-
Passed to set_license().
perl_bean-
Passed to set_perl_bean(). Must be an
ARRAYreference.
METHODS
- add_perl_bean( [ VALUE ... ] )
-
Add additional values on the list of PerlBean objects in the collection. Each
VALUEis an object out of which the id is obtained through methodget_package(). The obtained key is used to store the value and may be used for deletion and to fetch the value. 0 or more values may be supplied. Multiple occurrences of the same key yield in the last occurring key to be inserted and the rest to be ignored. Each key of the specified values is allowed to occur only once. On error an exceptionError::Simpleis thrown. - delete_perl_bean(ARRAY)
-
Delete elements from the list of PerlBean objects in the collection. Returns the number of deleted elements. On error an exception
Error::Simpleis thrown. - exists_perl_bean(ARRAY)
-
Returns the count of items in
ARRAYthat are in the list of PerlBean objects in the collection. - get_license()
-
Returns the software license for the PerlBean collection.
- keys_perl_bean()
-
Returns an
ARRAYcontaining the keys of the list of PerlBean objects in the collection. - set_license(VALUE)
-
Set the software license for the PerlBean collection.
VALUEis the value. On error an exceptionError::Simpleis thrown. - set_perl_bean( [ VALUE ... ] )
-
Set the list of PerlBean objects in the collection absolutely using values. Each
VALUEis an object out of which the id is obtained through methodget_package(). The obtained key is used to store the value and may be used for deletion and to fetch the value. 0 or more values may be supplied. Multiple occurrences of the same key yield in the last occurring key to be inserted and the rest to be ignored. Each key of the specified values is allowed to occur only once. On error an exceptionError::Simpleis thrown. - values_perl_bean( [ KEY_ARRAY ] )
-
Returns an
ARRAYcontaining the values of the list of PerlBean objects in the collection. IfKEY_ARRAYcontains one or moreKEYs the values related to theKEYs are returned. If noKEYs specified all values are returned. - write(DIRECTORY)
-
Write the hierarchy of Perl class code to
DIRECTORY.DIRECTORYis a directory name. On error an exceptionError::Simpleis thrown.
SEE ALSO
PerlBean, PerlBean::Attribute, PerlBean::Attribute::Boolean, PerlBean::Attribute::Factory, PerlBean::Attribute::Multi, PerlBean::Attribute::Multi::Ordered, PerlBean::Attribute::Multi::Unique, PerlBean::Attribute::Multi::Unique::Associative, PerlBean::Attribute::Multi::Unique::Associative::MethodKey, PerlBean::Attribute::Multi::Unique::Ordered, PerlBean::Attribute::Single, PerlBean::Dependency, PerlBean::Dependency::Import, PerlBean::Dependency::Require, PerlBean::Dependency::Use, PerlBean::Described, PerlBean::Described::ExportTag, PerlBean::Method, PerlBean::Method::Constructor, PerlBean::Method::Factory, PerlBean::Style, PerlBean::Symbol
BUGS
None known (yet.)
HISTORY
First development: December 2002 Last update: September 2003
AUTHOR
Vincenzo Zocca
COPYRIGHT
Copyright 2002, 2003 by Vincenzo Zocca
LICENSE
This file is part of the PerlBean module hierarchy for Perl by Vincenzo Zocca.
The PerlBean module hierarchy is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
The PerlBean module hierarchy is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with the PerlBean module hierarchy; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA