Froody::Argument::Text - Froody argument type handler for raw text


Froody documentation Contained in the Froody distribution.

Index


Code Index:

NAME

Top

Froody::Argument::Text - Froody argument type handler for raw text

AUTHORS

Top

Copyright Fotango 2006. All rights reserved.

Please see the main Froody documentation for details of who has worked on this project.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


Froody documentation Contained in the Froody distribution.

package Froody::Argument::Text;

use strict;
use warnings;

use base 'Froody::Argument';

sub type { 'text' }

# process_text is documented
sub process {
  my ($class, $param) = @_;
  return $param;
}

1;