All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.awt.event.ComponentEvent Maven / Gradle / Ivy

Go to download

JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.

There is a newer version: 0.6.8
Show newest version
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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy