The IMENotifyMessage Class of the com.ms.util.InputMethod package provides message objects that notify an Input Method Editor (IME) object to perform an action with one of the various windows associated with it.
public class IMENotifyMessage extends InputMethodMessage { // Fields public final static int CHANGE_CANDIDATE; public final static int CLOSE_CANDIDATE; public final static int CLOSE_STATUS_WINDOW; public final static int OPEN_CANDIDATE; public final static int OPEN_STATUS_WINDOW; public final static int UNKNOWN; // Constructors public IMENotifyMessage(int id); // Methods public String[] getCandidateList(); public int getID (); public String toString(); }
InputMethodMessage | +--IMENotifyMessage