GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
MixinFactory::Factory(3) User Contributed Perl Documentation MixinFactory::Factory(3)

Class::MixinFactory::Factory - Class Factory with Selection of Mixins

  use Class::MixinFactory::Factory;

  my $factory = Class::MixinFactory::Factory->new();
  
  $factory->base_class( "MyClass");

  $factory->mixin_prefix( "MyMixins" );
  $factory->mixed_prefix( "MyClasses" );

  my $class = $factory->class( @mixins );

A mixin factory generates new classes at run-time which inherit from each of several classes.

new()
  $factory_class->new() : $factory
  $factory_class->new( %attributes ) : $factory
    

Create a new factory object.

May be passed a hash of attributes, with the key matching one of the supported accessor methods named below and the value containing the value to assign.

base_class()
  $factory->base_class() : $package_name
  $factory->base_class( $package_name )
    

Required. Get or set the base class to be inherited from by all mixed classes.

mixin_prefix()
  $factory->mixin_prefix() : $package_name
  $factory->mixin_prefix( $package_name )
    

Optional. Get or set a prefix to be placed before all mixin class names that don't contain a double-colon. Defaults to the name of the base class.

mixed_prefix()
  $factory->mixed_prefix() : $package_name
  $factory->mixed_prefix( $package_name )
    

Optional. Get or set a prefix to be placed before all generated class names. Defaults to the name of the base class or the factory class followed by "::AUTO"

class()
  $factory->class( @mixins ) : $package_name
    

Find or generate a class combining the requested mixin classes.

For a facade interface that facilitates access to this functionality, see Class::MixinFactory.

For distribution, installation, support, copyright and license information, see Class::MixinFactory::ReadMe.

2004-11-16 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.