Difference between revisions of "Documentation/DevGuide/OfficeDev/Implementing a Thesaurus"

From Apache OpenOffice Wiki
Jump to: navigation, search
m (1 revision(s))
m
Line 24: Line 24:
  
 
Choose a different implementation name for the service and modify the  
 
Choose a different implementation name for the service and modify the  
 
+
<source lang="java">
 
   public Locale[] getLocales()
 
   public Locale[] getLocales()
 
+
</source>
 
and  
 
and  
 
+
<source lang="java">
 
   public boolean hasLocale(...)
 
   public boolean hasLocale(...)
 
+
</source>
 
functions.
 
functions.
  
 
The only function to be modified at the stated position to implement the <idl>com.sun.star.linguistic2.XThesaurus</idl> interface is  
 
The only function to be modified at the stated position to implement the <idl>com.sun.star.linguistic2.XThesaurus</idl> interface is  
 
+
<source lang="java">
 
   public XMeaning[] queryMeanings(...)
 
   public XMeaning[] queryMeanings(...)
 
+
</source>
 
Look in the constructor  
 
Look in the constructor  
 
+
<source lang="java">
 
   public SampleThesaurus()  
 
   public SampleThesaurus()  
 
+
</source>
 
to see if there are properties you do not require.
 
to see if there are properties you do not require.
  

Revision as of 16:51, 29 March 2008



A sample implementation of a thesaurus is found in the examples for linguistic.

The thesaurus implements the following interfaces:

and

For the implementation of the thesaurus, modify the sample thesaurus by following the same procedure as for the spell checker and thesaurus:

Choose a different implementation name for the service and modify the

  public Locale[] getLocales()

and

  public boolean hasLocale(...)

functions.

The only function to be modified at the stated position to implement the com.sun.star.linguistic2.XThesaurus interface is

  public XMeaning[] queryMeanings(...)

Look in the constructor

  public SampleThesaurus()

to see if there are properties you do not require.

Registration and activation is the same as for the spell checker and hyphenator.

Content on this page is licensed under the Public Documentation License (PDL).
Personal tools