ice.pilots.html4
Interface ICEDragClient


public interface ICEDragClient

This interface defines methods that support Drag and Drop operations at a high level, but which are available outside the This class is a convenience only for implementing DnD operations reflectively in the browser. When the product is no longer constrained, this class may be easily removed.

Since:
6.1

Method Summary
 String getDragPayload()
          Get the Drag and Drop payload from the browser.
 boolean isGestureListeningEnabled()
          In the Browser, we are overloaded in mouse gesture support.
 

Method Detail

isGestureListeningEnabled

public boolean isGestureListeningEnabled()
In the Browser, we are overloaded in mouse gesture support. Some mouse motions select text and images, still others will attempt to DragAndDrop them. This method allows the browser to indicate whether the DragAndDrop gesture recognition should be enabled. This would return false when the Document does not have selected text.

Returns:

getDragPayload

public String getDragPayload()
Get the Drag and Drop payload from the browser. This is currently a string, which will get converted into a StringTransferable object for proper insertion into the DragAndDrop classes.

Returns: