java.awt.event.ComponentEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtransc-rt Show documentation
Show all versions of jtransc-rt Show documentation
JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.
package java.awt.event;
import java.awt.*;
@SuppressWarnings({"WeakerAccess", "unused"})
public class ComponentEvent extends AWTEvent {
public static final int COMPONENT_FIRST = 100;
public static final int COMPONENT_LAST = 103;
public static final int COMPONENT_MOVED = COMPONENT_FIRST;
public static final int COMPONENT_RESIZED = 1 + COMPONENT_FIRST;
public static final int COMPONENT_SHOWN = 2 + COMPONENT_FIRST;
public static final int COMPONENT_HIDDEN = 3 + COMPONENT_FIRST;
public ComponentEvent(Component component, int id) {
super(component, id);
}
}