Uses of Interface
org.apache.pivot.wtk.Manifest

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

Uses of Manifest in org.apache.pivot.wtk
 

Classes in org.apache.pivot.wtk that implement Manifest
 class LocalManifest
          Manifest class that serves as data source for a clipboard or drag/drop operation.
 class RemoteManifest
          Manifest class that acts as a proxy to remote clipboard or drag/drop data.
 

Methods in org.apache.pivot.wtk that return Manifest
static Manifest Clipboard.getContent()
          Retrieves the contents of the clipboard.
 

Methods in org.apache.pivot.wtk with parameters of type Manifest
 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.
 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.