| WSST documentation | Contained in the WSST distribution. |
WSST::Schema::Param - Schema::Param class of WSST
This class represents the param element of schema.
Constructor.
Accessor for the name.
Accessor for the title.
Accessor for the desc.
Accessor for the type.
Accessor for the require.
http://code.google.com/p/wsst/
Mitsuhisa Oshikawa <mitsuhisa [at] gmail.com> Yusuke Kawasaki <u-suke [at] kawa.net>
Copyright 2008 WSS Project Team
| 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;