Quizzer::Element::Web::Note - A paragraph on a form


Quizzer documentation Contained in the Quizzer distribution.

Index


Code Index:

NAME

Top

Quizzer::Element::Web::Note - A paragraph on a form

DESCRIPTION

Top

This element handles a paragraph of text on a web form. It is identical to Quizzer::Element::Web::Text.

METHODS

Top


Quizzer documentation Contained in the Quizzer distribution.
#!/usr/bin/perl -w

package Quizzer::Element::Web::Note;
use strict;
use Quizzer::Element::Web::Text;
use vars qw(@ISA);
@ISA=qw(Quizzer::Element::Web::Text);

my $VERSION='0.01';

1