1 7 8 package java.awt.im; 9 10 import java.awt.Component ; 11 import java.util.Locale ; 12 import java.awt.AWTEvent ; 13 import java.lang.Character.Subset; 14 import sun.awt.im.InputMethodContext; 15 16 57 58 public class InputContext { 59 60 66 protected InputContext() { 67 } 69 70 73 public static InputContext getInstance() { 74 return new sun.awt.im.InputMethodContext(); 75 } 76 77 128 public boolean selectInputMethod(Locale locale) { 129 return false; 131 } 132 133 151 public Locale getLocale() { 152 return null; 154 } 155 156 169 public void setCharacterSubsets(Subset[] subsets) { 170 } 172 173 199 public void setCompositionEnabled(boolean enable) { 200 } 202 203 217 public boolean isCompositionEnabled() { 218 return false; 220 } 221 222 241 public void reconvert() { 242 } 244 245 252 public void dispatchEvent(AWTEvent event) { 253 } 255 256 269 public void removeNotify(Component client) { 270 } 272 273 287 public void endComposition() { 288 } 290 291 297 public void dispose() { 298 } 300 301 315 public Object getInputMethodControlObject() { 316 return null; 318 } 319 320 } 321 | Popular Tags |