| org.eclipse.pde.internal.ui.editor.IPDEDropParticipant
All known Subclasses: org.eclipse.pde.internal.ui.editor.StructuredViewerSection,
IPDEDropParticipant | public interface IPDEDropParticipant (Code) | | IPDEDropParticipant
|
Method Summary | |
public boolean | canDropCopy(Object targetObject, Object[] sourceObjects, int targetLocation) | public boolean | canDropLink(Object targetObject, Object[] sourceObjects, int targetLocation) | public boolean | canDropMove(Object targetObject, Object[] sourceObjects, int targetLocation) | public void | doDropCopy(Object targetObject, Object[] sourceObjects, int targetLocation) | public void | doDropLink(Object targetObject, Object[] sourceObjects, int targetLocation) | public void | doDropMove(Object targetObject, Object[] sourceObjects, int targetLocation) |
canDropCopy | public boolean canDropCopy(Object targetObject, Object[] sourceObjects, int targetLocation)(Code) | | Parameters: targetObject - The original target object Parameters: sourceObjects - The original source objects Parameters: targetLocation - ViewerDropAdapter: LOCATION_ON, LOCATION_BEFORE, LOCATION_AFTER |
canDropLink | public boolean canDropLink(Object targetObject, Object[] sourceObjects, int targetLocation)(Code) | | Parameters: targetObject - The original target object Parameters: sourceObjects - The original source objects Parameters: targetLocation - ViewerDropAdapter: LOCATION_ON, LOCATION_BEFORE, LOCATION_AFTER |
canDropMove | public boolean canDropMove(Object targetObject, Object[] sourceObjects, int targetLocation)(Code) | | Parameters: targetObject - The original target object Parameters: sourceObjects - The original source objects Parameters: targetLocation - ViewerDropAdapter: LOCATION_ON, LOCATION_BEFORE, LOCATION_AFTER |
doDropCopy | public void doDropCopy(Object targetObject, Object[] sourceObjects, int targetLocation)(Code) | | Parameters: targetObject - The original target object Parameters: sourceObjects - The serialized / deserialized source objects (need to be reconnected) Parameters: targetLocation - ViewerDropAdapter: LOCATION_ON, LOCATION_BEFORE, LOCATION_AFTER |
doDropLink | public void doDropLink(Object targetObject, Object[] sourceObjects, int targetLocation)(Code) | | Parameters: targetObject - The original target object Parameters: sourceObjects - The serialized / deserialized source objects (need to be reconnected) Parameters: targetLocation - ViewerDropAdapter: LOCATION_ON, LOCATION_BEFORE, LOCATION_AFTER |
doDropMove | public void doDropMove(Object targetObject, Object[] sourceObjects, int targetLocation)(Code) | | Parameters: targetObject - The original target object Parameters: sourceObjects - The serialized / deserialized source objects (need to be reconnected) Parameters: targetLocation - ViewerDropAdapter: LOCATION_ON, LOCATION_BEFORE, LOCATION_AFTER |
|
|