2000-04-09 00:13:27 -04:00
|
|
|
/* Copyright (C) 1999, 2000 Free Software Foundation
|
1999-05-05 07:05:57 -04:00
|
|
|
|
|
|
|
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.*;
|
|
|
|
|
2000-04-09 00:13:27 -04:00
|
|
|
/* Status: Believed complete and correct to JDK 1.2. */
|
1999-05-05 07:05:57 -04:00
|
|
|
|
|
|
|
public class TextEvent extends AWTEvent
|
|
|
|
{
|
2000-04-09 00:13:27 -04:00
|
|
|
public static final int TEXT_FIRST = 900;
|
|
|
|
public static final int TEXT_LAST = 900;
|
|
|
|
public static final int TEXT_VALUE_CHANGED = 900;
|
|
|
|
|
1999-05-05 07:05:57 -04:00
|
|
|
public TextEvent (Object source, int id)
|
|
|
|
{
|
2000-04-09 00:13:27 -04:00
|
|
|
super (source, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
public String paramString ()
|
|
|
|
{
|
2000-07-11 23:32:07 -04:00
|
|
|
return "TEXT_VALUE_CHANGED";
|
1999-05-05 07:05:57 -04:00
|
|
|
}
|
|
|
|
}
|