|
NAMEClass::MakeMethods::Template::Universal - Meta-methods for any type of objectSYNOPSISpackage MyObject; use Class::MakeMethods::Template::Universal ( 'no_op' => [ 'twiddle' ], 'croak' => [ 'fail', { croak_msg => 'Curses!' } ] ); package main; MyObject->twiddle; # Does nothing if ( $foiled ) { MyObject->fail() } # Dies with croak_msg DESCRIPTIONUNIVERSAL META-METHODSThe following meta-methods and behaviors are applicable across multiple types of classes and objects.Universal:genericThis is not a directly-invokable method type, but instead provides code expressions for use in other method-generators.You can use any of these features in your meta-method interfaces without explicitly importing them. Modifiers
Behaviors
no_opFor each meta-method, creates a method with an empty body.use Class::MakeMethods::Template::Universal ( 'no_op' => [ 'foo bar baz' ], ); You might want to create and use such methods to provide hooks for subclass activity. No interfaces or parameters supported. croakFor each meta-method, creates a method which will croak if called.use Class::MakeMethods::Template::Universal ( 'croak' => [ 'foo bar baz' ], ); This is intended to support the use of abstract methods, that must be overidden in a useful subclass. If each subclass is expected to provide an implementation of a given method, using this abstract method will replace the generic error message below with the clearer, more explicit error message that follows it: Can't locate object method "foo" via package "My::Subclass" The "foo" method is abstract and can not be called on My::Subclass However, note that the existence of this method will be detected by UNIVERSAL::can(), so it is not suitable for use in optional interfaces, for which you may wish to be able to detect whether the method is supported or not. The -unsupported and -prohibited interfaces provide alternate error messages, or a custom error message can be provided using the 'croak_msg' parameter. method_initCreates a method that accepts a hash of key-value pairs, or a reference to hash of such pairs. For each pair, the key is interpreted as the name of a method to call, and the value is the argument to be passed to that method.Sample declaration and usage: package MyObject; use Class::MakeMethods::Template::Universal ( method_init => 'init', ); ... my $object = MyObject->new() $object->init( foo => 'Foozle', bar => 'Barbados' ); # Equivalent to: $object->foo('Foozle'); $object->bar('Barbados'); You might want to create and use such methods to allow easy initialization of multiple object or class parameters in a single call. Note: including methods of this type will circumvent the protection of "private" and "protected" methods, because it an outside caller can cause an object to call specific methods on itself, bypassing the privacy protection. forward_methodsCreates a method which delegates to an object provided by another method.Example: use Class::MakeMethods::Template::Universal forward_methods => [ --target=> 'whistle', w, [ 'x', 'y' ], { target=> 'xylophone' }, { name=>'z', target=>'zither', target_args=>[123], method_name=>do_zed }, ]; Example: The above defines that method "w" will be handled by the calling "w" on the object returned by "whistle", whilst methods "x" and "y" will be handled by "xylophone", and method "z" will be handled by calling "do_zed" on the object returned by calling "zither(123)". Interfaces:
Parameters: The following additional parameters are supported:
SEE ALSOSee Class::MakeMethods for general information about this distribution.See Class::MakeMethods::Template for information about this family of subclasses.
Visit the GSP FreeBSD Man Page Interface. |