Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: linguistic2 ::

interface XThesaurus

Base Interface
com::sun::star::linguistic2::XSupportedLocales

Description
allows for the retrieval of possible meanings for a given word and language.

The meaning of a word is in essence a descriptive text for that word. Each meaning may have several synonyms where a synonym is a word (or small text) with the same or similar meaning.

See also
unknown ?
XSupportedLocales


Known Services which Export this Interface

com::sun::star::linguistic2::Thesaurus offers thesaurus functionality.

Methods' Summary

queryMeanings

Methods' Details

queryMeanings
 
sequence< com::sun::star::linguistic2::XMeaning >
queryMeanings(
[ in ] string aTerm,
[ in ] com::sun::star::lang::Locale aLocale,
[ in ] com::sun::star::beans::PropertyValues aProperties )
raises ( com::sun::star::lang::IllegalArgumentException );

Description
Returns
a list of meanings for the given word and language.
Parameter aTerm
the word to query for its meanings.
Parameter aLocale
specifies the language of the word.

If the language is not supported, an IllegalArgumentException exception is raised.

Parameter aProperties
provides property values to be used for this function call only. It is usually empty in order to use the default values supplied with the property set.
See also
unknown ?
Locale
See also
unknown ?
XMeaning

Top of Page