Files
codeql/java/ql/test/stubs/javafx-web/javafx/scene/Cursor.java
Tony Torralba 393a0759db More stubs
2023-03-10 12:35:13 +01:00

31 lines
1.0 KiB
Java
Generated

// Generated automatically from javafx.scene.Cursor for testing purposes
package javafx.scene;
abstract public class Cursor
{
public String toString(){ return null; }
public static Cursor CLOSED_HAND = null;
public static Cursor CROSSHAIR = null;
public static Cursor DEFAULT = null;
public static Cursor DISAPPEAR = null;
public static Cursor E_RESIZE = null;
public static Cursor HAND = null;
public static Cursor H_RESIZE = null;
public static Cursor MOVE = null;
public static Cursor NE_RESIZE = null;
public static Cursor NONE = null;
public static Cursor NW_RESIZE = null;
public static Cursor N_RESIZE = null;
public static Cursor OPEN_HAND = null;
public static Cursor SE_RESIZE = null;
public static Cursor SW_RESIZE = null;
public static Cursor S_RESIZE = null;
public static Cursor TEXT = null;
public static Cursor V_RESIZE = null;
public static Cursor WAIT = null;
public static Cursor W_RESIZE = null;
public static Cursor cursor(String p0){ return null; }
}