1.3 - | Method from java.awt.im.spi.InputMethodDescriptor Summary: |
|---|
| createInputMethod, getAvailableLocales, getInputMethodDisplayName, getInputMethodIcon, hasDynamicLocaleList |
| Method from java.awt.im.spi.InputMethodDescriptor Detail: |
|---|
|
Only the input method's primary locales should be returned. For example, if a Japanese input method also has a pass-through mode for Roman characters, typically still only Japanese would be returned. Thus, the list of locales returned is typically a subset of the locales for which the corresponding input method's implementation of java.awt.im.spi.InputMethod#setLocale returns true. If #hasDynamicLocaleList returns true, this method is called each time the information is needed. This gives input methods that depend on network resources the chance to add or remove locales as resources become available or unavailable. |
The inputLocale parameter specifies the locale for which text is input. This parameter can only take values obtained from this descriptor's #getAvailableLocales method or null. If it is null, an input locale independent name for the input method should be returned. If a name for the desired display language is not available, the method may fall back to some other language. |
The inputLocale parameter specifies the locale for which text is input. This parameter can only take values obtained from this descriptor's #getAvailableLocales method or null. If it is null, an input locale independent icon for the input method should be returned. The icon's size should be 16×16 pixels. |
|