NAME

App::ValueDomain - a set of values and their labels

SYNOPSIS

use App;

$context = App->context();
$dom = $context->service("ValueDomain");
$dom = $context->value_domain();

DESCRIPTION

A ValueDomain service represents a set of values and their labels.

Methods:

_load()

The _load() method is called to get the list of valid values in a data domain and the labels that should be used to represent these values to a user.

* Signature: $self->_load()
* Signature: $self->_load($values_string)
* Param:     $values_string    string
* Return:    void
* Throws:    App::Exception
* Since:     0.01

Sample Usage: 

$self->_load();

ACKNOWLEDGEMENTS

* Author:  Stephen Adkins <stephen.adkins@officevision.com>
* License: This is free software. It is licensed under the same terms as Perl itself.

SEE ALSO

App::Context, App::Service