Microsoft SDK for Java

IMECompositionMessage Class

The IMECompositionMessage Class of the com.ms.util.InputMethod package implements Input Method (IME) Composition messages.

public class IMECompositionMessage extends InputMethodMessage
{
  // Fields
  public final static int CHANGE_COMPOSITION;
  public final static int END_COMPOSITION;
  public final static int START_COMPOSITION;
  public final static int UNKNOWN;

  // Constructors
  public IMECompositionMessage(int id);
  public IMECompositionMessage(int id, int keyCode, int keyChar,
        String compStr);

  // Methods
  public String getComposition();
  public int getID();
  public int getKeyChar();
  public int getkeyCode();
  public void setComposition(String compStr);
  public void setKeyChar(int keyChar);
  public void setKeyCode(int keyCode);
  public String toString();
}

Hierarchy

InputMethodMessage 
  |
  +--IMECompositionMessage

© 1999 Microsoft Corporation. All rights reserved. Terms of use.