in reply to Objects as arrays but with autogenerated getters + setters

You might want to look at Class::MakeMethods.

--Solo

--
You said you wanted to be around when I made a mistake; well, this could be it, sweetheart.
  • Comment on Re: Objects as arrays but with autogenerated getters + setters

Replies are listed 'Best First'.
Re^2: Objects as arrays but with autogenerated getters + setters
by tinita (Parson) on Jun 26, 2006 at 21:38 UTC
    thanks, I'll have a look at it. after a quick glance, I didn't find out how to use get_attr and set_attr method names, though.

      package Foo; use Class::MakeMethods::Template::Array ( 'new' => 'new', 'scalar' => [ -interface=> { 'get_*'=>'get', 'set_*'=>'set' }, qw/ name age city job salary /, ], ); package main; use Data::Dumper; my $foo = Foo->new(); $foo->set_name("foo"); $foo->set_age(100); warn Data::Dumper->Dump([$foo], ['foo']); print $foo->get_age,$/; $foo->set_age(23); print $foo->get_age,$/;

      --Solo

      --
      You said you wanted to be around when I made a mistake; well, this could be it, sweetheart.
        thank you so much. sometimes one needs such an example to get a starting point =)