—{
$Gapp::Meta::Widget::Native::Role::HasLabel::VERSION
=
'0.481'
;
}
use
Moose::Role;
has
'label'
=> (
is
=>
'rw'
,
isa
=>
'Str'
,
);
1;
__END__
=pod
=head1 NAME
Gapp::Meta::Widget::Native::Role::HasLabel - label attribute for widgets
=head1 SYNOPSIS
Gapp::Button->new( label => 'Exit' );
=head1 PROVIDED ATTRIBUTES
=over 4
=item B<label>
=over 4
=item is rw
=item isa Str|Undef
=back
The text label to apply to the widget.
=back
=head1 AUTHORS
Jeffrey Ray Hallock E<lt>jeffrey.hallock at gmail dot comE<gt>
=head1 COPYRIGHT & LICENSE
Copyright (c) 2011-2012 Jeffrey Ray Hallock.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
=cut