WSST::Schema::Param - Schema::Param class of WSST


WSST documentation Contained in the WSST distribution.

Index


Code Index:

NAME

Top

WSST::Schema::Param - Schema::Param class of WSST

DESCRIPTION

Top

This class represents the param element of schema.

METHODS

Top

new

Constructor.

name

Accessor for the name.

title

Accessor for the title.

desc

Accessor for the desc.

type

Accessor for the type.

require

Accessor for the require.

SEE ALSO

Top

http://code.google.com/p/wsst/

AUTHORS

Top

Mitsuhisa Oshikawa <mitsuhisa [at] gmail.com> Yusuke Kawasaki <u-suke [at] kawa.net>

COPYRIGHT AND LICENSE

Top


WSST documentation Contained in the WSST distribution.

package WSST::Schema::Param;

use strict;
use base qw(WSST::Schema::Base);
__PACKAGE__->mk_accessors(qw(name title desc type require));

use constant BOOL_FIELDS => qw(require);

our $VERSION = '0.1.1';

1;