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 / InputContext.class (.txt) next >
Encoding:
Java Class File  |  1979-12-31  |  1.0 KB  |  53 lines

  1. package java.awt.im;
  2.  
  3. import java.awt.AWTEvent;
  4. import java.awt.Component;
  5. import java.util.Locale;
  6. import sun.awt.im.InputMethodContext;
  7.  
  8. public class InputContext {
  9.    protected InputContext() {
  10.    }
  11.  
  12.    public static InputContext getInstance() {
  13.       return new InputMethodContext();
  14.    }
  15.  
  16.    public boolean selectInputMethod(Locale var1) {
  17.       return false;
  18.    }
  19.  
  20.    public Locale getLocale() {
  21.       return null;
  22.    }
  23.  
  24.    public void setCharacterSubsets(Character.Subset[] var1) {
  25.    }
  26.  
  27.    public void setCompositionEnabled(boolean var1) {
  28.    }
  29.  
  30.    public boolean isCompositionEnabled() {
  31.       return false;
  32.    }
  33.  
  34.    public void reconvert() {
  35.    }
  36.  
  37.    public void dispatchEvent(AWTEvent var1) {
  38.    }
  39.  
  40.    public void removeNotify(Component var1) {
  41.    }
  42.  
  43.    public void endComposition() {
  44.    }
  45.  
  46.    public void dispose() {
  47.    }
  48.  
  49.    public Object getInputMethodControlObject() {
  50.       return null;
  51.    }
  52. }
  53.