Searched refs:inputMethod (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputContext.java78 private InputMethod inputMethod; field in class:InputContext
144 if (inputMethod != null) {
145 if (inputMethod.setLocale(locale)) {
168 if (inputMethod == null && inputMethodLocator != null) {
169 inputMethod = getInputMethod();
170 if (inputMethod != null) {
171 return inputMethod.setLocale(locale);
181 if (inputMethod != null) {
182 return inputMethod.getLocale();
201 if (inputMethod !
[all...]
H A DInputMethodContext.java366 public void enableClientWindowNotification(InputMethod inputMethod, boolean enable) { argument
367 super.enableClientWindowNotification(inputMethod, enable);
/openjdk7/jdk/src/share/classes/java/awt/im/spi/
H A DInputMethodContext.java135 * @param inputMethod the input method for which notifications are
139 public void enableClientWindowNotification(InputMethod inputMethod, boolean enable); argument
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCInputMethod.m114 + (void) _nativeNotifyPeerWithView:(AWTView *)view inputMethod:(JNFJObjectWrapper *) inputMethod {
118 if (!inputMethod) return;
120 [view setInputMethod:[inputMethod jObject]];
175 (JNIEnv *env, jobject this, jlong nativePeer, jobject inputMethod)
179 JNFJObjectWrapper *inputMethodWrapper = [[JNFJObjectWrapper alloc] initWithJObject:inputMethod withEnv:env];
181 [CInputMethod _nativeNotifyPeerWithView:view inputMethod:inputMethodWrapper];
H A DAWTView.h73 - (void)setInputMethod:(jobject)inputMethod;
H A DAWTView.m1190 - (void)setInputMethod:(jobject)inputMethod
1204 if (inputMethod != NULL)
1205 fInputMethodLOCKABLE = JNFNewGlobalRef(env, inputMethod);

Completed in 41 milliseconds