Eobj

Eobj is an Easy Object Oriented programming environment.
Download

Eobj Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Eli Billauer
  • Publisher web site:
  • http://search.cpan.org/~billauer/Eobj-0.23/Eobj.pm

Eobj Tags


Eobj Description

Eobj is an Easy Object Oriented programming environment. Eobj is an Easy Object Oriented programming environment.SYNOPSIS use Eobj; # define the 'myclass' class inherit('myclass','myclass.pl','root'); init; # Always init before creating objects # Now create an object, and put the handle in $object $object = myclass->new(name => 'MyObject'); $object->mymethod('hello'); # Call the 'mymethod' method # Access some properties... $object->set('myscalar', 'The value'); $scalar = $object->get('myscalar'); $object->set('mylist', 'One', 'Two', 'Three'); @list = $object->get('mylist'); %hash = ('Foo' => 'Bar', 'Daa' => 'Doo'); $object->set('myhash', %hash); %the_hash = $object->get('myhash'); # Dump some debug information globalobj->objdump();Eobj is OO in Perl for the masses. It makes it possible to write complete OO scripts with plain Perl syntax (unlike classic OO-Perl). And like plain Perl, the syntax usually means what you think it means, as long as things are kept plain.Eobj doesn't reinvent Perl's natural OO environment, but is a wrapper for it. The real engine is still Perl.This man page is enough to get you going, but not more than that. If deeper understanding is needed, the documentation, which can be found in the Eobj Programmers guide, eobj.pdf (PDF format), is the place to look. The PDF file should come along with the module files. Requirements: · Perl


Eobj Related Software