NAME
WordNet::SenseRelate::Word - Perl module that represents a single word from the context.
SYNOPSIS
use WordNet::SenseRelate::Word;
$object = WordNet::SenseRelate::Word->new("balloon");
$object->retrieveSenses($wn, "nva");
$object->restrictSenses("n");
@senses = $object->getSenses();
DESCRIPTION
WordNet::SenseRelate::Word represents a single word from the context. A collection of word objects is used to represent an instance. Each word object contains the surface form of a word. In addition, it also contain the morphological root form, and the WordNet senses of the word if any.
EXPORT
None by default.
SEE ALSO
perl(1)
WordNet::SenseRelate::TargetWord(3)
WordNet::QueryData(3)
AUTHOR
Ted Pedersen, tpederse at d.umn.edu
Siddharth Patwardhan, sidd at cs.utah.edu
Satanjeev Banerjee, banerjee+ at cs.cmu.edu
COPYRIGHT AND LICENSE
Copyright (C) 2005 by Ted Pedersen, Siddharth Patwardhan, and Satanjeev Banerjee
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.3 or, at your option, any later version of Perl 5 you may have available.