summaryrefslogtreecommitdiff
path: root/libjava/java/awt/event/InputMethodEvent.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/awt/event/InputMethodEvent.java')
-rw-r--r--libjava/java/awt/event/InputMethodEvent.java54
1 files changed, 54 insertions, 0 deletions
diff --git a/libjava/java/awt/event/InputMethodEvent.java b/libjava/java/awt/event/InputMethodEvent.java
new file mode 100644
index 00000000000..d047a739900
--- /dev/null
+++ b/libjava/java/awt/event/InputMethodEvent.java
@@ -0,0 +1,54 @@
+/* Copyright (C) 1999, 2000 Free Software Foundation
+
+ This file is part of libjava.
+
+This software is copyrighted work licensed under the terms of the
+Libjava License. Please consult the file "LIBJAVA_LICENSE" for
+details. */
+
+package java.awt.event;
+import java.awt.*;
+
+/* A very incomplete placeholder. */
+
+public class InputMethodEvent extends AWTEvent
+{
+ public static final int CARET_POSITION_CHANGED = 1101;
+ public static final int INPUT_METHOD_FIRST = 1100;
+ public static final int INPUT_METHOD_LAST = 1101;
+ public static final int INPUT_METHOD_TEXT_CHANGED = 1100;
+
+ /*
+ public InputMethodEvent (Component source, int id,
+ AttributedCharacterIterator text,
+ int committedCharacterCount, TextHitInfo caret,
+ TextHitInfo visiblePosition)
+ {
+ if (id < INPUT_METHOD_FIRST
+ || id > INPUT_METHOD_LAST
+ || (id == CARET_POSITION_CHANGED && text != null)
+ || committedCharacterCount < 0
+ || (committedCharacterCount
+ > text.getEndIndex () - text.getBeginIndex ()))
+ throw new IllegalArgumentException ();
+ }
+
+ public InputMethodEvent (Component source, int id, TextHitInfo caret,
+ TextHitInfo visiblePosition);
+
+ public void consume ();
+ public TextHitInfo getCaret ();
+ public int getCommittedCharacterCount ();
+ public AttributedCharacterIterator getText ();
+ public TextHitInfo getVisiblePosition ();
+ public boolean isConsumed ();
+
+ public String paramString ();
+ */
+
+ // FIXME: this is just to let it compile.
+ private InputMethodEvent ()
+ {
+ super (null, -1);
+ }
+}