table of contents
other versions
- Tumbleweed 1.01-9.35
- Leap-15.6
| MakeMethods::Template::Flyweight(3) | User Contributed Perl Documentation | MakeMethods::Template::Flyweight(3) |
NAME¶
Class::MakeMethods::Template::Flyweight - Deprecated name for InsideOut
SYNOPSIS¶
package MyObject;
use Class::MakeMethods::Template::InsideOut (
new => [ 'new' ]
scalar => [ 'foo', 'bar' ]
);
package main;
my $obj = MyObject->new( foo => "Foozle", bar => "Bozzle" );
print $obj->foo(); # Prints Foozle
$obj->bar("Bamboozle"); # Sets $obj->{bar}
DESCRIPTION¶
Earlier versions of this package included a package named Class::MakeMethods::Template::Flyweight.
However, in hindsight, this name was poorly chosen, as it suggests that the Flyweight object design pattern is being used, when the functionality is more akin to what's sometimes known as "inside-out objects."
This functionality is now provided by Class::MakeMethods::Template::InsideOut, of which this is an almost-empty subclass retained to provide backwards compatibility.
SEE ALSO¶
Class::MakeMethods::Template::InsideOut.
| 2012-01-11 | perl v5.42.0 |