webgui/lib/WebGUI/FormBuilder/Tabset.pm
2009-11-17 14:00:07 -06:00

26 lines
369 B
Perl

package WebGUI::FormBuilder::Tabset;
use Moose;
has 'tabs' => (
is => 'rw',
isa => 'ArrayRef[WebGUI::FormBuilder::Tab]',
);
has 'session' => (
is => 'ro',
isa => 'WebGUI::Session',
required => 1,
weak_ref => 1,
traits => [ 'DoNotSerialize' ],
);
with Storage( format => 'JSON' );
sub toHtml {
# Render the entire tabset
}
1;