java.awt.event.MouseEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tornadofx-android-compat Show documentation
Show all versions of tornadofx-android-compat Show documentation
Provides the missing JDK classes from the Android SDK.
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