Uses of Class
pivot.wtk.DropAction

Packages that use DropAction
pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
 

Uses of DropAction in pivot.wtk
 

Methods in pivot.wtk that return DropAction
static DropAction DropAction.decode(java.lang.String value)
           
 DropAction DropTarget.dragEnter(Component component, Manifest dragContent, int supportedDropActions, DropAction userDropAction)
          Called when the mouse first enters a drop target during a drag operation.
 DropAction DropTarget.dragMove(Component component, Manifest dragContent, int supportedDropActions, int x, int y, DropAction userDropAction)
          Called when the mouse is moved while positioned over a drop target during a drag operation.
 DropAction DropTarget.drop(Component component, Manifest dragContent, int supportedDropActions, int x, int y, DropAction userDropAction)
          Called to drop the drag content.
static DropAction Keyboard.getDropAction()
          Returns the current drop action.
 DropAction DropTarget.userDropActionChange(Component component, Manifest dragContent, int supportedDropActions, int x, int y, DropAction userDropAction)
          Called when the user drop action changes while the mouse is positioned over a drop target during a drag operation.
static DropAction DropAction.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DropAction[] DropAction.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 DropAction
 DropAction DropTarget.dragEnter(Component component, Manifest dragContent, int supportedDropActions, DropAction userDropAction)
          Called when the mouse first enters a drop target during a drag operation.
 DropAction DropTarget.dragMove(Component component, Manifest dragContent, int supportedDropActions, int x, int y, DropAction userDropAction)
          Called when the mouse is moved while positioned over a drop target during a drag operation.
 DropAction DropTarget.drop(Component component, Manifest dragContent, int supportedDropActions, int x, int y, DropAction userDropAction)
          Called to drop the drag content.
 void DragSource.endDrag(Component component, DropAction dropAction)
          Called by the framework to terminate a drag operation.
 DropAction DropTarget.userDropActionChange(Component component, Manifest dragContent, int supportedDropActions, int x, int y, DropAction userDropAction)
          Called when the user drop action changes while the mouse is positioned over a drop target during a drag operation.