Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

class::unload(3pm) [debian man page]

Class::Unload(3pm)					User Contributed Perl Documentation					Class::Unload(3pm)

NAME
Class::Unload - Unload a class VERSION
version 0.07 SYNOPSIS
use Class::Unload; use Class::Inspector; use Some::Class; Class::Unload->unload( 'Some::Class' ); Class::Inspector->loaded( 'Some::Class' ); # Returns false require Some::Class; # Reloads the class METHODS
unload $class Unloads the given class by clearing out its symbol table and removing it from %INC. SEE ALSO
Class::Inspector ACKNOWLEDGEMENTS
Thanks to Matt S. Trout, James Mastros and Uri Guttman for various tips and pointers. AUTHOR
Dagfinn Ilmari MannsA~Xker <ilmari@ilmari.org>; COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Dagfinn Ilmari MannsA~Xker. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.10.1 2011-01-26 Class::Unload(3pm)

Check Out this Related Man Page

Validation::Class::Field(3pm)				User Contributed Perl Documentation			     Validation::Class::Field(3pm)

NAME
Validation::Class::Field - Field Object for Validation::Class Classes VERSION
version 7.70 SYNOPSIS
package SomeClass; use Validation::Class; package main; my $class = SomeClass->new; ... my $field = $class->get_field('some_field_name'); $field->apply_filters; $field->validate; # validate this only $field->errors->count; # field-level errors 1; DESCRIPTION
Validation::Class::Field is responsible for field data handling in Validation::Class derived classes, performs functions at the field-level only. This class automatically creates attributes for all acceptable field directives as listed under "DIRECTIVES" in Validation::Class::Prototype. ATTRIBUTES
errors The errors attribute is a Validation::Class::Errors object. METHODS
new my $self = Validation::Class::Field->new({ name => 'some_field_name' }); AUTHOR
Al Newkirk <anewkirk@ana.io> COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Al Newkirk. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-28 Validation::Class::Field(3pm)
Man Page