The InputMethodCallback Interface of the com.ms.util.InputMethod package enables InputMethodListener objects to return composed characters and Input Method Editor (IME) messages. This interface is used by both Java IMEs and native system IMEs.
public interface InputMethodCallback { // Methods public void handleIMEChar(long when, char keyChar, int state); public void handleIMEMessage(InputMethodMessage IMEMessage); }