java.awt.dnd.peer
Interface DropTargetContextPeer


public interface DropTargetContextPeer

Disabled: no SafeJ information.

This interface is exposed by the underlying window system platform to enable control of platform DnD operations

Since:
1.2

Method Summary
 void acceptDrag(int dragAction)
          accept the Drag
 void acceptDrop(int dropAction)
          accept the Drop
 void dropComplete(boolean success)
          signal complete
 DropTarget getDropTarget()
          get the DropTarget associated with this peer
 int getTargetActions()
          get the current Target actions
 Transferable getTransferable()
          get an input stream to the remote data
 DataFlavor[] getTransferDataFlavors()
          get the (remote) DataFlavors from the peer
 boolean isTransferableJVMLocal()
           
 void rejectDrag()
          reject the Drag
 void rejectDrop()
          reject the Drop
 void setTargetActions(int actions)
          update the peer's notion of the Target's actions
 

Method Detail

setTargetActions

void setTargetActions(int actions)
Class is disabled.

update the peer's notion of the Target's actions


getTargetActions

int getTargetActions()
Class is disabled.

get the current Target actions


getDropTarget

DropTarget getDropTarget()
Class is disabled.

get the DropTarget associated with this peer


getTransferDataFlavors

DataFlavor[] getTransferDataFlavors()
Class is disabled.

get the (remote) DataFlavors from the peer


getTransferable

Transferable getTransferable()
                             throws InvalidDnDOperationException
Class is disabled.

get an input stream to the remote data

Throws:
InvalidDnDOperationException

isTransferableJVMLocal

boolean isTransferableJVMLocal()
Class is disabled.

Returns:
if the DragSource Transferable is in the same JVM as the Target

acceptDrag

void acceptDrag(int dragAction)
Class is disabled.

accept the Drag


rejectDrag

void rejectDrag()
Class is disabled.

reject the Drag


acceptDrop

void acceptDrop(int dropAction)
Class is disabled.

accept the Drop


rejectDrop

void rejectDrop()
Class is disabled.

reject the Drop


dropComplete

void dropComplete(boolean success)
Class is disabled.

signal complete