| Pangloss documentation | view source | Contained in the Pangloss distribution. |
Pangloss::Term - a word or phrase describing a concept.
use Pangloss::Term;
my $term = new Pangloss::Term();
$term->status( Pangloss::Status->new->approved )
->name( $text )
->concept( $concept )
->language( $language )
->creator( $user )
->notes( $text )
->date( time )
->validate;
# catch Pangloss::Term::Errors
In Pangloss, a term (or keyword) is a word or phrase that describes a particular Pangloss::Concept in a particular Pangloss::Language.
New terms are created with a Pangloss::Term::Status of pending.
This class inherits its interface from Pangloss::StoredObject::Common and Pangloss::Collection::Item.
set/get Pangloss::Concept of this term.
set/get Pangloss::Language of this term.
set/get the Pangloss::Term::Status of this term.
Steve Purkis <spurkis@quiup.com>
| Pangloss documentation | view source | Contained in the Pangloss distribution. |