| Quizzer documentation | Contained in the Quizzer distribution. |
Quizzer::Element::Web::Note - A paragraph on a form
This element handles a paragraph of text on a web form. It is identical to Quizzer::Element::Web::Text.
| 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