|
Last change
on this file since 154 was 2, checked in by bird, 23 years ago |
|
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
|
File size:
667 bytes
|
| Line | |
|---|
| 1 | /* Copyright (C) 1999, 2000 Free Software Foundation
|
|---|
| 2 |
|
|---|
| 3 | This file is part of libjava.
|
|---|
| 4 |
|
|---|
| 5 | This software is copyrighted work licensed under the terms of the
|
|---|
| 6 | Libjava License. Please consult the file "LIBJAVA_LICENSE" for
|
|---|
| 7 | details. */
|
|---|
| 8 |
|
|---|
| 9 | package java.awt.event;
|
|---|
| 10 | import java.awt.*;
|
|---|
| 11 |
|
|---|
| 12 | /* Status: Believed complete and correct to JDK 1.2. */
|
|---|
| 13 |
|
|---|
| 14 | public class TextEvent extends AWTEvent
|
|---|
| 15 | {
|
|---|
| 16 | public static final int TEXT_FIRST = 900;
|
|---|
| 17 | public static final int TEXT_LAST = 900;
|
|---|
| 18 | public static final int TEXT_VALUE_CHANGED = 900;
|
|---|
| 19 |
|
|---|
| 20 | public TextEvent (Object source, int id)
|
|---|
| 21 | {
|
|---|
| 22 | super (source, id);
|
|---|
| 23 | }
|
|---|
| 24 |
|
|---|
| 25 | public String paramString ()
|
|---|
| 26 | {
|
|---|
| 27 | return "TEXT_VALUE_CHANGED";
|
|---|
| 28 | }
|
|---|
| 29 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.