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

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

Uses of DropAction in org.apache.pivot.wtk
 

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