Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.478.142 Times

Form Class freeware
Filter: All | Freeware | Demo
 

Form Class

< 1 2 3 4 5 > 
Added: January 13, 2010 | Visits: 938

Class::Observable Class::Observable is a Perl module that allows other classes and objects to respond to events in yours. SYNOPSIS # Define an observable class package My::Object; use base qw( Class::Observable ); # Tell all classes/objects observing this object that a state-change # has occurred sub... Platforms: *nix

License: Freeware Size: 10.24 KB Download (102): Class::Observable Download

Added: April 15, 2010 | Visits: 844

Exception::Class::TryCatch Exception::Class::TryCatch is a syntactic try/catch sugar for use with Exception::Class. SYNOPSIS use Exception::Class::TryCatch; # simple usage of catch() eval { Exception::Class::Base->throw(error) }; catch my $err and warn $err->error; # catching only certain types or else... Platforms: *nix

License: Freeware Size: 15.36 KB Download (88): Exception::Class::TryCatch Download

Added: August 02, 2010 | Visits: 1.119

Class::MakeMethods::Docs::ToDo Class::MakeMethods::Docs::ToDo is a Perl module with ideas, problems, and suggestions. SYNOPSIS There are lots of things that could be done to improve this module. DISTRIBUTION ISSUES Issues about the distribution and supporting files, rather than the code: Documentation Make sure that... Platforms: *nix

License: Freeware Size: 153.6 KB Download (94): Class::MakeMethods::Docs::ToDo Download

Added: June 22, 2010 | Visits: 967

class.upload.php class.upload.php manipulates uploads and images very easily. It can convert and resize uploaded images in many ways. It uses the GD library. How does it work? - the class constructor upload handles a uploaded file (it can also handle a local file) some optional parameters can be set up to... Platforms: *nix

License: Freeware Size: 43.01 KB Download (98): class.upload.php Download

Added: June 10, 2010 | Visits: 1.428

Class::CGI Class::CGI is a Perl module to fetch objects from your CGI object. SYNOPSIS use Class::CGI handlers => { customer_id => My::Customer::Handler }; my $cgi = Class::CGI->new; my $customer = $cgi->param(customer_id); my $name = $customer->name; my $email = $cgi->param(email); # behaves... Platforms: *nix

License: Freeware Size: 17.41 KB Download (95): Class::CGI Download

Added: May 23, 2010 | Visits: 1.096

Class::Meta::Declare Class::Meta::Declare is a Perl module deprecated in favor of Class::Meta::Express. SYNOPSIS This was a first attempt at making a saner interface for Class::Meta. It is nicer, but Class::Meta::Express is nicer still. Go use that one. package MyApp::Thingy; use Class::Meta::Declare :all;... Platforms: *nix

License: Freeware Size: 15.36 KB Download (88): Class::Meta::Declare Download

Added: September 21, 2010 | Visits: 882

Class::Delegation Class::Delegation is a Perl object-oriented delegation. SYNOPSIS package Car; use Class::Delegation send => steer, to => ["left_front_wheel", "right_front_wheel"], send => drive, to => ["right_rear_wheel", "left_rear_wheel"], as => ["rotate_clockwise", "rotate_anticlockwise"] send... Platforms: *nix

License: Freeware Size: 14.34 KB Download (87): Class::Delegation Download

Added: May 09, 2010 | Visits: 896

Class::Std Class::Std is a Perl module to support for creating standard "inside-out" classes. SYNOPSIS package MyClass; use Class::Std; # Create storage for object attributes... my %name : ATTR; my %rank : ATTR; my %snum : ATTR; my %public_data : ATTR; # Handle initialization of objects of... Platforms: *nix

License: Freeware Size: 30.72 KB Download (93): Class::Std Download

Added: July 11, 2010 | Visits: 992

Class::Std::Utils Class::Std::Utils is a Perl module for utility subroutines for building "inside-out" objects. SYNOPSIS use Class::Std::Utils; # Constructor for anonymous scalars... my $new_object = bless anon_scalar(), $class; # Convert an object reference into a unique ID number... my $ID_num = ident... Platforms: *nix

License: Freeware Size: 5.12 KB Download (93): Class::Std::Utils Download

Added: March 22, 2010 | Visits: 1.049

Class::DBI::DataMigration::Mapping Class::DBI::DataMigration::Mapping is an abstract parent class for objects that map a single column in a single row from the source database to the target database. Synopsis use Class::DBI::DataMigration::Mapping; # ... Later, when building $mappings hashref for use by a #... Platforms: *nix

License: Freeware Size: 12.29 KB Download (97): Class::DBI::DataMigration::Mapping Download

Added: November 13, 2010 | Visits: 928

Exception::Class Exception::Class is a Perl module that allows you to declare real exception classes in Perl. SYNOPSIS use Exception::Class ( MyException, AnotherException => { isa => MyException }, YetAnotherException => { isa => AnotherException, description => These exceptions are related to IPC },... Platforms: *nix

License: Freeware Size: 16.38 KB Download (91): Exception::Class Download

Added: September 23, 2010 | Visits: 1.305

Class::InsideOut::Manual::About Class::InsideOut::Manual::About is a guide to this and other implementations of the inside-out technique. This manual provides an overview of the inside-out technique and its application within Class::InsideOut and other modules. It also provides a list of references for further study.... Platforms: *nix

License: Freeware Size: 48.13 KB Download (109): Class::InsideOut::Manual::About Download

Added: September 09, 2010 | Visits: 787

Class::InsideOut Class::InsideOut is a Perl module with a safe, simple inside-out object construction kit. SYNOPSIS package My::Class; use Class::InsideOut qw( public private register id ); public name => my %name; # accessor: name() private age => my %age; # no accessor sub new { register( shift ) }... Platforms: *nix

License: Freeware Size: 48.13 KB Download (88): Class::InsideOut Download

Added: November 03, 2010 | Visits: 847

Class::Meta::Express Class::Meta::Express is a Perl module for concise, expressive creation of Class::Meta classes. Synopsis package My::Contact; use Class::Meta::Express; class { meta contact => ( default_type => string ); has name; has contact => ( required => 1 ); } This module provides an interface... Platforms: *nix

License: Freeware Size: 9.22 KB Download (92): Class::Meta::Express Download

Added: February 10, 2010 | Visits: 967

Class::Meta Class::Meta is a Perl class automation, introspection, and data validation. SYNOPSIS Generate a class: package MyApp::Thingy; use strict; use Class::Meta; use Class::Meta::Types::String; use Class::Meta::Types::Numeric; BEGIN { # Create a Class::Meta object for this class. my $cm =... Platforms: *nix

License: Freeware Size: 61.44 KB Download (90): Class::Meta Download

Added: March 03, 2010 | Visits: 1.127

Class::Meta::Type Class::Meta::Type is a Perl module for data type validation and accessor building. SYNOPSIS package MyApp::TypeDef; use strict; use Class::Meta::Type; use IO::Socket; my $type = Class::Meta::Type->add( key => io_socket, desc => IO::Socket object, name => IO::Socket Object ); This... Platforms: *nix

License: Freeware Size: 61.44 KB Download (93): Class::Meta::Type Download

Added: February 03, 2010 | Visits: 1.047

Class::IntrospectionMethods::Catalog Class::IntrospectionMethods::Catalog can manage catalogs from IntrospectionMethods. Exported functions set_method_info( target_class, method_name, info_ref ) Store construction info for method method_name of class target_class. set_global_catalog (target_class, ...) Store catalog... Platforms: *nix

License: Freeware Size: 31.74 KB Download (94): Class::IntrospectionMethods::Catalog Download

Added: November 16, 2010 | Visits: 854

Class::IntrospectionMethods Class::IntrospectionMethods is a Perl module that creates methods with introspection. SYNOPSIS use Class::IntrospectionMethods qw/make_methods/; make_methods ( parent, global_catalog => { name => metacat, list => [ [qw/foo/] => f_cat, [qw/bar baz/] => b_cat, ], } new_with_init... Platforms: *nix

License: Freeware Size: 31.74 KB Download (92): Class::IntrospectionMethods Download

Added: October 06, 2010 | Visits: 675

Class::DataStore Class::DataStore is a Perl module for generic OO data storage/retrieval. SYNOPSIS my %values = ( one => 1, two => 2 ); my $store = Class::DataStore->new( %values ); # using get/set methods $store->set( three, 3 ); my $three = $store->get( three ); # using AUTOLOAD method $store->four(... Platforms: *nix

License: Freeware Size: 4.1 KB Download (89): Class::DataStore Download

Added: April 21, 2010 | Visits: 751

dtRdr::Traits::Class dtRdr::Traits::Class is a Perl module with shared OO stuff. Methods to Break Things NOT_IMPLEMENTED Imported into base class. Gives a nicer message than the standard "Cant locate method...", indicating that you did not typo the method name, but instead forgot to override it. sub... Platforms: *nix

License: Freeware Size: 2.8 MB Download (92): dtRdr::Traits::Class Download

< 1 2 3 4 5 >