The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Pangloss::Application - the Pangloss application.

SYNOPSIS

  use Pangloss::Application;
  my $app = new Pangloss::Application()
    ->store( new Pixie()->connect('...') );

  my $view1 = $app->user_editor->update_user( ... );
  my $view2 = $app->term_editor->add_term( ... );
  ...

  # see respective classes for syntax

DESCRIPTION

This class is the main entry point to the Pangloss system.

METHODS

store()

set/get the Pixie object store for this application.

user_editor()

set/get the Pangloss::Application::UserEditor.

language_editor()

set/get the Pangloss::Application::LanguageEditor.

category_editor()

set/get the Pangloss::Application::CategoryEditor.

concept_editor()

set/get the Pangloss::Application::ConceptEditor.

term_editor()

set/get the Pangloss::Application::TermEditor.

searcher()

set/get the Pangloss::Application::Searcher.

AUTHOR

Steve Purkis <spurkis@quiup.com>

SEE ALSO

Pangloss