home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / awt / im / spi / InputMethod.class (.txt) next >
Encoding:
Java Class File  |  1979-12-31  |  792 b   |  40 lines

  1. package java.awt.im.spi;
  2.  
  3. import java.awt.AWTEvent;
  4. import java.awt.Rectangle;
  5. import java.util.Locale;
  6.  
  7. public interface InputMethod {
  8.    void setInputMethodContext(InputMethodContext var1);
  9.  
  10.    boolean setLocale(Locale var1);
  11.  
  12.    Locale getLocale();
  13.  
  14.    void setCharacterSubsets(Character.Subset[] var1);
  15.  
  16.    void setCompositionEnabled(boolean var1);
  17.  
  18.    boolean isCompositionEnabled();
  19.  
  20.    void reconvert();
  21.  
  22.    void dispatchEvent(AWTEvent var1);
  23.  
  24.    void notifyClientWindowChange(Rectangle var1);
  25.  
  26.    void activate();
  27.  
  28.    void deactivate(boolean var1);
  29.  
  30.    void hideWindows();
  31.  
  32.    void removeNotify();
  33.  
  34.    void endComposition();
  35.  
  36.    void dispose();
  37.  
  38.    Object getControlObject();
  39. }
  40.