From bcbf441e09fb502cf64924ff2530fa144bdf52c5 Mon Sep 17 00:00:00 2001 From: Andreas Brachold Date: Mon, 13 Aug 2007 18:41:27 +0000 Subject: * Move files to trunk --- lib/Class/MakeMethods/Basic.pm | 98 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 lib/Class/MakeMethods/Basic.pm (limited to 'lib/Class/MakeMethods/Basic.pm') diff --git a/lib/Class/MakeMethods/Basic.pm b/lib/Class/MakeMethods/Basic.pm new file mode 100644 index 0000000..f893f5b --- /dev/null +++ b/lib/Class/MakeMethods/Basic.pm @@ -0,0 +1,98 @@ +package Class::MakeMethods::Basic; + +use Class::MakeMethods '-isasubclass'; + +$VERSION = 1.000; + +1; + +__END__ + +######################################################################## + +=head1 NAME + +Class::MakeMethods::Basic - Make really simple methods + + +=head1 SYNOPSIS + + package MyObject; + use Class::MakeMethods::Basic::Hash ( + 'new' => [ 'new' ], + 'scalar' => [ 'foo', 'bar' ] + ); + + package main; + + my $obj = MyObject->new( foo => "Foozle", bar => "Bozzle" ); + print $obj->foo(); + $obj->bar("Barbados"); + + +=head1 DESCRIPTION + +This document describes the various subclasses of Class::MakeMethods +included under the Basic::* namespace, and the method types each +one provides. + +The Basic subclasses provide stripped-down method-generation implementations. + +Subroutines are generated as closures bound to each method name. + +=head2 Calling Conventions + +When you C a subclass of this package, the method declarations you provide +as arguments cause subroutines to be generated and installed in +your module. You can also omit the arguments to C and instead make methods +at runtime by passing the declarations to a subsequent call to +C. + +You may include any number of declarations in each call to C +or C. If methods with the same name already exist, earlier +calls to C or C win over later ones, but within each +call, later declarations superceed earlier ones. + +You can install methods in a different package by passing C<-TargetClass =E I> as your first arguments to C or C. + +See L for more details. + +=head2 Declaration Syntax + +The following types of declarations are supported: + +=over 4 + +=item * + +I => 'I' + +=item * + +I => 'I I...' + +=item * + +I => [ 'I', 'I', ...] + +=back + +For a list of the supported values of I, see +L, or the documentation +for each subclass. + +For each method name you provide, a subroutine of the indicated +type will be generated and installed under that name in your module. + +Method names should start with a letter, followed by zero or more +letters, numbers, or underscores. + + +=head1 SEE ALSO + +See L for general information about this distribution. + +For distribution, installation, support, copyright and license +information, see L. + +=cut -- cgit v1.2.3