App::Widget::Label - A simple label


NAME

App::Widget::Label - A simple label


SYNOPSIS

   $name = "label";
   # official way
   use App;
   $context = App->context();
   $w = $context->widget($name);
   # internal way
   use App::Widget::Label;
   $w = App::Widget::Label->new($name);


DESCRIPTION

This class implements a simple label.