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

Class Methods freeware
Filter: All | Freeware | Demo
 

Class Methods

< 1 2 3 4 5 
Added: June 09, 2010 | Visits: 951

Access_user Class Access_user Class is an easy to use system for protecting pages and registering users. The main features are user login, user registration, page protection, forgotten password recovery, and email-based account activation. The class is powered by MySQL and PHP sessions. Inside the package are... Platforms: *nix

License: Freeware Size: 36.86 KB Download (103): Access_user Class Download

Added: March 17, 2010 | Visits: 592

Class::HPLOO Class::HPLOO is an easier way to declare classes on Perl, based in the popular class {...} style and ePod. USAGE use Class::HPLOO ; class Foo extends Bar , Baz { use LWP::Simple qw(get) ; ## import the method get() to this package. attr ( array foo_list , int age , string name , foo )... Platforms: *nix

License: Freeware Size: 27.65 KB Download (99): Class::HPLOO Download

Added: September 15, 2010 | Visits: 1.013

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

Added: June 02, 2010 | Visits: 1.021

Class::Agreement Class::Agreement is a Perl module that add contracts to your Perl classes easily. SYNOPSIS package SomeClass; use Class::Agreement; # use base Class::Accessor or Class::MethodMaker, # or roll your own: sub new { ... } invariant { my ($self) = @_; $self->count > 0; }; precondition... Platforms: *nix

License: Freeware Size: 27.65 KB Download (96): Class::Agreement Download

Added: October 03, 2010 | Visits: 1.088

Runtime Java Class Editor RJCE allows all methods or variables of user defined classes to be altered at runtime. These alterations are then applied to a single instance, a collection of instances (i.e. list, set or map), or an entire class. This helps you to test your application in an interactive way; altering running... Platforms: *nix

License: Freeware Size: 3.1 MB Download (172): Runtime Java Class Editor Download

Added: July 05, 2010 | Visits: 1.360

Rose::DB::Object::Helpers Rose::DB::Object::Helpers is a mix-in class containing convenience methods for Rose::DB::Object. SYNOPSIS package MyDBObject; use Rose::DB::Object; our @ISA = qw(Rose::DB::Object); use Rose::DB::Object::Helpers clone, { load_or_insert => find_or_create }; ... $obj =... Platforms: *nix

License: Freeware Size: 481.28 KB Download (114): Rose::DB::Object::Helpers Download

Added: July 27, 2010 | Visits: 838

Object::Relation::Meta::Class::Schema Object::Relation::Meta::Class::Schema is a Perl module for Object::Relation database store builder. This module is provides metadata for all Object::Relation classes while building a storage schema. Loading Object::Relation::Schema causes it to be used instead of Object::Relation::Meta::Class.... Platforms: *nix

License: Freeware Size: 24.58 KB Download (87): Object::Relation::Meta::Class::Schema Download

Released: August 01, 2012  |  Added: August 01, 2012 | Visits: 1.294

Class::XML Class::XML is a Perl module for simple XML Abstraction. SYNOPSIS package Foo; use base qw/Class::XML/; __PACKAGE__->has_attributes(qw/length colour/); __PACKAGE__->has_child(bar => Bar); package Bar; use base qw/Class::XML/; __PACKAGE__->has_parent(foo);... Platforms: *nix

License: Freeware Size: 18.43 KB Download (97): Class::XML Download

Added: October 16, 2010 | Visits: 759

Class::MakeMethods::Template::Generic Class::MakeMethods::Template::Generic Perl module contains templates for common meta-method types. SYNOPSIS package MyObject; use Class::MakeMethods ( Template::Hash:new => [ new ], Template::Hash:scalar => [ foo ] Template::Static:scalar => [ bar ] ); package main; my $obj =... Platforms: *nix

License: Freeware Size: 153.6 KB Download (87): Class::MakeMethods::Template::Generic Download

Added: October 14, 2010 | Visits: 666

Class::NiceApi Class::NiceApi is a Perl module that translates your methodNames to my method_names. SYNOPSIS use Class::NiceApi; my $acl = Class::NiceApi->new( victim => Decision::ACL->new(), style => custom, table => { run_acl => RunACL } ); Perl method names should be written lowercased and multiple... Platforms: *nix

License: Freeware Size: 3.07 KB Download (92): Class::NiceApi Download

Added: October 22, 2010 | Visits: 1.052

Class::Maker Class::Maker Perl module contains classes, reflection, schema, serialization, attribute- and multiple inheritance. SYNOPSIS use Class::Maker qw(class); class Human, { isa => [qw( ParentClass )], public => { string => [qw(name lastname)], ref => [qw(father mother)], array =>... Platforms: *nix

License: Freeware Size: 49.15 KB Download (110): Class::Maker Download

Added: October 25, 2010 | Visits: 1.643

Attachment Mailer class Attachment Mailer class is a PHP class that can send email messages with multiple attachments and HTML. I wrote this class to integrate more functionality for classes like Access_user or DB_cart and others using PHP’s mail function. But the class can be also used in every web application... Platforms: *nix

License: Freeware Size: 19.46 KB Download (184): Attachment Mailer class Download

Added: August 05, 2010 | Visits: 768

Class::Interfaces Class::Interfaces is a Per module for defining interface classes inline. SYNOPSIS # define some simple interfaces use Class::Interfaces ( Serializable => [ pack, unpack ], Printable => [ toString ], Iterable => [ iterator ], Iterator => [ hasNext, next ] ); # or some more complex ones... Platforms: *nix

License: Freeware Size: 6.14 KB Download (93): Class::Interfaces Download

Added: July 25, 2010 | Visits: 954

Class::Date Class::Date is a perl module, which provides a simple date type for perl. You can create new Class::Date objects with a constructor from different scalar formats, array refs, and hash refs, and then you can easily manipulate it by the builtin "+" and "-" operators (e.g.,... Platforms: *nix

License: Freeware Size: 34.82 KB Download (89): Class::Date Download

Added: November 06, 2010 | Visits: 953

Class::Bits Class::Bits is a Perl module with class wrappers around bit vectors. SYNOPSIS package MyClass; use Class::Bits; make_bits( a => 4, # 0..15 b => 1, # 0..1 c => 1, # 0..1 d => 2, # 0..3 e => s4 # -8..7 f => s1 # -1..0 ); package; $o=MyClass->new(a=>12, d=>2); print "o->b is ",... Platforms: *nix

License: Freeware Size: 4.1 KB Download (90): Class::Bits Download

Added: February 15, 2010 | Visits: 851

Class::StrongSingleton Class::StrongSingleton is a stronger and more secure Singleton base class. SYNOPSIS package My::Singleton::Class; use base qw(Class::StrongSingleton); sub new { my ($class, %my_params) = @_; # create our object instance my $instance = { %my_params }; bless($instance, $class); # and... Platforms: *nix

License: Freeware Size: 6.14 KB Download (96): Class::StrongSingleton Download

Added: August 20, 2010 | Visits: 812

Class::MOP Class::MOP is a Meta Object Protocol for Perl 5. SYNOPSIS # ... This will come later, for now see # the other SYNOPSIS for more information This module is an attempt to create a meta object protocol for the Perl 5 object system. It makes no attempt to change the behavior or characteristics... Platforms: *nix

License: Freeware Size: 73.73 KB Download (97): Class::MOP Download

Added: May 10, 2013 | Visits: 1.226

Guestbook class This class is meant to manage a guest book storing its records either in XML files database or in a SQL database. Currently it supports only MySQL databases.You can use this class to add new records, delete records, update a record, get and sort records to show up on your website. These methods... Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (52): Guestbook class Download

Added: May 10, 2013 | Visits: 227

Yet another Set class for Python This script is a pure Pythonic implementation of a set class. The syntax and methods implemented are, for the most part, borrowed from PEP 218. Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (53): Yet another Set class for Python Download

Added: May 10, 2013 | Visits: 592

Complex Boolean Regular Expression Class This class wraps up a complex boolean word expression, creating an internal regular expression, and provides methods that allows you to perform matches and searches on it. Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (62): Complex Boolean Regular Expression Class Download

< 1 2 3 4 5