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

Class Methods freeware
Filter: All | Freeware | Demo
 

Class Methods

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

Static or Class Methods This script implements class methods that do not require an object instance.



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

License: Freeware Download (50): Static or Class Methods Download

Added: August 27, 2010 | Visits: 1.127

Rose::Class::MakeMethods::Set Rose::Class::MakeMethods::Set is a Perl module to create class methods to manage sets. SYNOPSIS package MyClass; use Rose::Class::MakeMethods::Set ( inheritable_set => [ required_name => { add_implies => add_valid_name, test_method => name_is_required, }, ], inherited_set => [...





Platforms: *nix

License: Freeware Size: 28.67 KB Download (95): Rose::Class::MakeMethods::Set Download

Added: May 10, 2013 | Visits: 237

Classmethod emulation in python2.1 Class methods were introduced in python2.2. This script illustrates how the same effect can be achieved in python 2.1.


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

License: Freeware Download (54): Classmethod emulation in python2.1 Download

Added: June 25, 2013 | Visits: 359

DatabaseAccess DatabaseAccess abstracts database queries (UPDATE, SELECT, INSERT, REPLACE, DELETE) by passing data to class methods, the query will be generated and run automatically.DatabaseAccess is meant to be used in conjunction with the ADOdb database library.


Platforms: PHP

License: Freeware Size: 10 KB Download (45): DatabaseAccess Download

Added: January 18, 2010 | Visits: 1.019

PerlIO::via::Logger PerlIO::via::Logger is a PerlIO layer for prefixing current time to log output. SYNOPSIS use PerlIO::via::Logger; PerlIO::via::Logger->format( [%b %d, %Y %r] ); use PerlIO::via::Logger format => [%b %d, %Y %r] ; open( my $in,<:via(Logger),filein ) or die "Cant open file.ln for reading:...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (99): PerlIO::via::Logger Download

Added: May 10, 2013 | Visits: 468

Dynamically added methods to a class This script allows you to add a method to a class at an arbitrary point in your code. The method is available instantly to all already existing instances and of course ones yet to be created. If you specify method_name then that name is used for the method call.


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

License: Freeware Download (57): Dynamically added methods to a class Download

Added: May 10, 2013 | Visits: 486

Rebind class properties Sometimes you define properties in base class and override the getter setter methods in derived classes. Then you find out the base class though has derived properties are still pointing to baseclasse's methods not the overriden ones.


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

License: Freeware Download (56): Rebind class properties Download

Added: April 27, 2010 | Visits: 1.253

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 (114): Class::Contract Download

Added: April 15, 2010 | Visits: 839

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: February 10, 2010 | Visits: 963

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: October 17, 2010 | Visits: 899

Class::Std::Storable Class::Std::Storable is a Perl module to support for creating serializable "inside-out" classes. SYNOPSIS In general, use this class exactly as you would Class::Std. package Ice::Cream; use Class::Std::Storable; { my %name_of :ATTR( :get :set ); my %flavor_of :ATTR( :get :set );...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (87): Class::Std::Storable Download

Added: June 17, 2010 | Visits: 1.074

Class::Classgen::New Class::Classgen::New is a Perl module that creates the new() method for classes generated by classgen. SYNOPSIS Used within classgen. The main purpose of New.pm is to write the new() method for a class generated by classgen. It provides code to derive local instance variables with my for...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (93): Class::Classgen::New Download

Added: January 13, 2010 | Visits: 1.132

Class::Generate Class::Generate is a Perl module that can generate Perl class hierarchies. SYNOPSIS use Class::Generate qw(class subclass delete_class); # Declare class Class_Name, with the following types of members: class Class_Name => [ s => $, # scalar a => @, # array h => %, # hash c => Class, #...


Platforms: *nix

License: Freeware Size: 53.25 KB Download (96): Class::Generate Download

Added: May 10, 2013 | Visits: 589

com.wis.math.alg.Complex class Implements the static behaviours of the Complex Class, with algorithm logic based on the use of reverse Polish notation. Supports all functions pertaining to the complex number calculator and three added functions that are beyond the calculator's scope. The calculator is capable of performing all...


Platforms: Windows, Mac, *nix, Flash,

License: Freeware Download (54): com.wis.math.alg.Complex class Download

Added: April 29, 2013 | Visits: 387

Doctrine Common The Doctrine Common annotations library was born from a need in the Doctrine2 ORM to allow the mapping information to be specified as metadata embedded in the class files, on properties and methods. The library is independent and can be used in your own libraries to implement doc block annotations.


Platforms: PHP

License: Freeware Size: 71.68 KB Download (40): Doctrine Common Download

Added: February 08, 2010 | Visits: 1.487

Games::Euchre::Player Games::Euchre::Player is a player class for Euchre card game. The four Player objects are used to interact with the humand and computer players, as well as to keep the state of the players hand, whether he bid and whether he went alone. CLASS METHODS new GAME NUMBER NAME Create and...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (116): Games::Euchre::Player Download

Added: March 16, 2010 | Visits: 742

B::XPath B::XPath class can search Perl optrees with XPath syntax. SYNOPSIS Perl represents programs internally as a tree of opcodes. To execute a program, it walks this tree, performing each operation as it encounters it. The B family of modules allows you to examine (and in some cases, manipulate)...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (88): B::XPath Download

Added: July 14, 2013 | Visits: 373

Date_Holidays Date_Holidays helps you to calculate the dates and titles of holidays and other special celebrations.The calculation is driver-based so it is easy to add new drivers that calculate a country's holidays. The methods of the class can be used to get a holiday's date and title in various languages.


Platforms: PHP

License: Freeware Size: 61.44 KB Download (40): Date_Holidays Download

Added: March 10, 2010 | Visits: 1.095

Telephony::CountryDialingCodes Telephony::CountryDialingCodes is a Perl module that can convert international dialing codes to country codes and vice versa. SYNOPSIS # Usage method 1 (using object methods): use Telephony::CountryDialingCodes; my $o = new Telephony::CountryDialingCodes(); my $country_code = NL; print...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (92): Telephony::CountryDialingCodes Download

Added: August 07, 2010 | Visits: 912

Unix::Conf::Bind8::Conf Unix::Conf::Bind8::Conf is a front end for a suite of classes for manipulating a Bind8 style configuration file. SYNOPSIS my ($conf, $obj, $ret); $conf = Unix::Conf::Bind8->new_conf ( FILE => named.conf, SECURE_OPEN => /etc/named.conf, ) or $conf->die ("couldnt create `named.conf"); #...


Platforms: *nix

License: Freeware Size: 77.82 KB Download (102): Unix::Conf::Bind8::Conf Download

1 2 3 4 5 >