WSST::Schema::Return - Schema::Return class of WSST


WSST documentation Contained in the WSST distribution.

Index


Code Index:

NAME

Top

WSST::Schema::Return - Schema::Return class of WSST

DESCRIPTION

Top

This class represents the return element of schema.

METHODS

Top

new

Constructor.

options

Accessor for the options.

page_total_entries

Accessor for the page_total_entries.

page_current_page

Accessor for the page_current_page.

page_entries_per_page

Accessor for the page_entries_per_page.

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::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;