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

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

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

public class MouseEvent {
    public static final int BUTTON1 = 1;

    public int getButton() {
        return BUTTON1;
    }

    public int getClickCount() {
        return 1;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy