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.182.316 Times

Object Class freeware
Filter: All | Freeware | Demo
 

Object Class

< 1 2 3 4 5 > 
Added: May 10, 2013 | Visits: 462

Event DOM Class This is a little JS class that's designed to take an incoming DOM event and convert it to a cross-browser object.Anyone who has worked with JS long enough, has come to realize that each browser handles keyboard events differently. This class will attempt to return the data in a manner that's...



Platforms: Windows, Mac, *nix, JavaScript, BSD Solaris

License: Freeware Download (49): Event DOM Class Download

Added: May 10, 2013 | Visits: 528

General purpose file iterator class This script presents a general purpose file object iterator cum file object proxy class.It provides a class that gives several iterator functions to read a text file by characters, words, lines, paragraphs or blocks. It also acts as a proxy for the wrapped file object. ts as a pOne way to do it...





Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (56): General purpose file iterator class Download

Added: July 05, 2013 | Visits: 688

Convert MySQL tables to PHP class Convert MySQL tables to PHP class retrieves the list of tables and information about their fields from a specified MySQL database. It can generate code for classes that can be used to access the respective MySQL table records as if they were objects.The generated classes can have getter and...


Platforms: PHP

License: Freeware Size: 10 KB Download (60): Convert MySQL tables to PHP class Download

Added: August 19, 2013 | Visits: 434

Class::AutoDB This class works closely with Class::AutoClass to provide almost transparent object persistence that can coexist with a human-engineered database. The auto-persistence mechanism provides hooks for connecting the two parts of the database together. Caveat: The current version only works with...


Platforms: *nix

License: Freeware Size: 337.92 KB Download (37): Class::AutoDB Download

Added: January 18, 2010 | Visits: 1.409

Class::DBI::Plugin::FilterOnClick Class::DBI::Plugin::FilterOnClick is a Perl module to generate browsable and searchable HTML Tables using FilterOnClick in conjunction with Class::DBI. SYNOPSIS # Inside of your sub-class of Class::DBI add these lines: use Class::DBI::Plugin::FilterOnClick; use Class::DBI::Pager; use...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (98): Class::DBI::Plugin::FilterOnClick Download

Added: March 14, 2010 | Visits: 781

ASNMTAP::Asnmtap ASNMTAP::Asnmtap is an object-oriented Base Class to build modules that provides a nice object oriented interface for ASNMTAP. SYNOPSIS use ASNMTAP::Asnmtap; my $objectAsnmtap = ASNMTAP::Asnmtap->new ( _programName => test-asnmtap.pl, _programDescription => "Test ASNMTAP::Asnmtap",...


Platforms: *nix

License: Freeware Size: 1.6 MB Download (86): ASNMTAP::Asnmtap Download

Added: February 08, 2010 | Visits: 1.050

DBIx::Class::LibXMLdoc DBIx::Class::LibXMLdoc is a Perl module to create an adjunct "Doc" accessor of a columns data which is automatically parsed into a LibXML documentElement (alpha-software). SYNOPSIS package My::DB::thingy; __PACKAGE__->load_components(qw/ PK::Auto LibXMLdoc Core /);...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (95): DBIx::Class::LibXMLdoc Download

Added: October 08, 2010 | Visits: 833

Object::Declare Object::Declare is a Perl module for declarative object constructor. SYNOPSIS use Object::Declare [MyApp::Column, MyApp::Param]; my %objects = declare { param foo => !is global, is immutable, valid_values are qw( more values ); column bar => field1 is value, field2 is...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (99): Object::Declare Download

Added: May 23, 2010 | Visits: 1.088

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: April 27, 2010 | Visits: 1.252

Class::Contract Class::Contract - Design-by-Contract OO in Perl. SYNOPSIS package ClassName use Class::Contract; contract { inherits BaseClass; invar { ... }; attr data1; attr data2 => HASH; class attr shared => SCALAR; ctor new; method methodname; pre { ... }; failmsg Error message; post...


Platforms: *nix

License: Freeware Size: 26.62 KB Download (108): Class::Contract Download

Added: July 11, 2010 | Visits: 986

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 (87): Class::Std::Utils Download

Added: April 18, 2010 | Visits: 866

Class::DBI::FormBuilder Class::DBI::FormBuilder is a Perl module with Class::DBI/CGI::FormBuilder integration. SYNOPSIS package Film; use strict; use warnings; use base Class::DBI; use Class::DBI::FormBuilder; # for indented output: # use Class::DBI::FormBuilder PrettyPrint => ALL; # POST all forms to...


Platforms: *nix

License: Freeware Size: 46.08 KB Download (88): Class::DBI::FormBuilder Download

Added: November 03, 2010 | Visits: 840

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: 962

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.119

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: April 04, 2010 | Visits: 1.034

OPML Writer OPML Writer is a PHP4 class for writing OPML files with an object-oriented approach..


Platforms: *nix

License: Freeware Size: 163.84 KB Download (110): OPML Writer Download

Added: October 06, 2010 | Visits: 670

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: 745

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 (86): dtRdr::Traits::Class Download

Added: July 20, 2010 | Visits: 609

Class::Declare Class::Declare is a Perl module created to declare classes with public, private and protected attributes and methods. SYNOPSIS package My::Class; use strict; use warnings; use base qw( Class::Declare ); __PACKAGE__->declare( public => { public_attr => 42 } , private => { private_attr...


Platforms: *nix

License: Freeware Size: 76.8 KB Download (88): Class::Declare Download

Added: September 15, 2010 | Visits: 1.007

Class::Declare::Attributes Class::Declare::Attributes is a Perl module with Class::Declare method types using Perl attributes. SYNOPSIS package My::Class; use 5.006; use strict; use warnings; use base qw( Class::Declare::Attributes ); # declare the class/instance attributes __PACKAGE__->declare( ... ); # #...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (93): Class::Declare::Attributes Download

< 1 2 3 4 5 >