|
NAMEToader::Render - This renders supported Toader objects.VERSIONVersion 0.1.0SYNOPSISuse Toader::Render; my $foo = Toader::Render->new(\%args); METHODSnewThis initiates the object.On argument is required and it is a Toader object. my $foo->new($toader); if($foo->error){ warn('error: '.$foo->error.":".$foo->errorString); } isAsupportedObjThis checks if a object is supported.A return of true means it is supported, otherwise it is false. This does not mean that the object is usable. For that use the method isAusableObj. my $supported=$self->isAsupportedObj($someObject); if(!$supported){ warn('The object is not supported.') } isAusableObjThis checks if a object is supported and usable.A return of true means it is supported, otherwise it is false. my $supported=$self->isAsupportedObj($someObject); if(!$supported){ warn('The object is not supported.') } renderObjThis renders a object.$foo->renderObj($obj); ERROR CODES1, noObjNo object specified.2, noDirSetThe object does not have a directory associated with it.3, noToaderObjNo Toader object specified.4, notAtoaderObjThe object passed as a Toader object is not a Toader object.5, noOutputDirSetNo outputdir specified.6, outputDirDoesNotExistThe specified outputdir does not exist or is not a directory.7, notAusableObjThe specified object is not usable.8, rendererInitErroredUnable to initialize the render for the object.9, renderErroredRendering failed at rendering the object.10, renderReturnedUndefRenderer returned undef.11, rendererInitReturnedUndefAttempting to initialize the renderer returned undefined.AUTHORZane C. Bowers-Hadley, "<vvelox at vvelox.net>"BUGSPlease report any bugs or feature requests to "bug-toader at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Toader>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.SUPPORTYou can find documentation for this module with the perldoc command.perldoc Toader::Render You can also look for information at:
ACKNOWLEDGEMENTSLICENSE AND COPYRIGHTCopyright 2013. Zane C. Bowers-Hadley.This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information.
Visit the GSP FreeBSD Man Page Interface. |