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

java.awt.AWTEvent Maven / Gradle / Ivy

There is a newer version: 0.6.8
Show newest version
package java.awt;

import java.util.EventObject;

public abstract class AWTEvent extends EventObject {
	protected int id;

	public AWTEvent(Object source, int id) {
		super(source);
		this.id = id;
	}

	public int getID() {
		return id;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy