-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathCursor.java
More file actions
30 lines (27 loc) · 1.04 KB
/
Cursor.java
File metadata and controls
30 lines (27 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// 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; }
}