Uses of Class
org.apache.pivot.wtk.Cursor

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

Uses of Cursor in org.apache.pivot.wtk
 

Methods in org.apache.pivot.wtk that return Cursor
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 org.apache.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 org.apache.pivot.wtk.skin
 

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