| Package | Description | 
|---|---|
| oracle.ide.util.dnd | 
 Contains API classes for drag-and-drop support of IDE types. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
DragDropManager.registerDropHelperForInstance(DropHelper helper,
                             java.lang.Class supportedClass)
Registers the  
DropHelper to handle data transfer operations
 where the drop target object is an instanceof the type specified by
 the Class parameter. | 
void | 
DragDropManager.registerDropHelperForType(DropHelper helper,
                         java.lang.Class supportedClass)
Registers the  
DropHelper to handle data transfer operations
 where the drop target object is the same type as the type specified by
 the Class parameter. | 
void | 
DragDropManager.unRegisterDropHelperForInstance(DropHelper helper,
                               java.lang.Class registeredClass)
Updates the registry to remove the association between the the
 supplied DropHelper and any instance of the supplied Class. 
 | 
void | 
DragDropManager.unRegisterDropHelperForType(DropHelper helper,
                           java.lang.Class registeredClass)
Updates the registry to remove the association between the the
 supplied DropHelper and the supplied Class. 
 |