| WSST documentation | Contained in the WSST distribution. |
WSST::Schema::Return - Schema::Return class of WSST
This class represents the return element of schema.
Constructor.
Accessor for the options.
Accessor for the page_total_entries.
Accessor for the page_current_page.
Accessor for the page_entries_per_page.
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::Return; use strict; use base qw(WSST::Schema::Node); __PACKAGE__->mk_accessors(qw(options page_total_entries page_current_page page_entries_per_page)); use constant BOOL_FIELDS => qw(multiple nullable page_total_entries page_current_page page_entries_per_page); our $VERSION = '0.1.1';
1;