Uses of Class
pivot.wtk.Cursor

Packages that use Cursor
pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. 
 

Uses of Cursor in pivot.wtk
 

Methods in pivot.wtk that return Cursor
static Cursor Cursor.decode(String value)
           
static Cursor Mouse.getCursor()
          Returns the current cursor.
 Cursor Component.getCursor()
          Returns the cursor that is displayed when the mouse pointer is over this component.
static Cursor Cursor.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Cursor[] Cursor.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in pivot.wtk with parameters of type Cursor
 void ComponentListener.cursorChanged(Component component, Cursor previousCursor)
          Called when a component's cursor has changed.
 void ComponentListener.Adapter.cursorChanged(Component component, Cursor previousCursor)
           
static void Mouse.setCursor(Cursor cursor)
          Sets the cursor to an explicit value.
 void Component.setCursor(Cursor cursor)
          Sets the cursor that is displayed when the mouse pointer is over this component.
 

Uses of Cursor in pivot.wtk.skin
 

Methods in pivot.wtk.skin with parameters of type Cursor
 void ComponentSkin.cursorChanged(Component component, Cursor previousCursor)