1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 04:55:22 +02:00

[cleanup] Add missing Javadoc

This commit is contained in:
Martin Oberhuber 2008-12-04 16:46:05 +00:00
parent ba53e9260f
commit e26ac9dfb0

View file

@ -135,10 +135,18 @@ public class SystemDNDTransferRunnable extends WorkspaceJob
return newSet; return newSet;
} }
/**
* Transfer RSE resources.
*
* @param target actual target object (parent item) to drop into
* @param targetSubSystem subsystem of target object
* @param targetAdapter RSE ISystemDragDropAdapter of target object
* @param monitor progress monitor for cancellation
* @return <code>true</code> if successfully transferred, or
* <code>false</code> if cancelled.
*/
protected boolean transferRSEResources(Object target, ISubSystem targetSubSystem, ISystemDragDropAdapter targetAdapter, IProgressMonitor monitor) protected boolean transferRSEResources(Object target, ISubSystem targetSubSystem, ISystemDragDropAdapter targetAdapter, IProgressMonitor monitor)
{ {
// transfer local artificts and categorize remote objects // transfer local artificts and categorize remote objects
for (int i = 0; i < _srcObjects.size() && _ok; i++) for (int i = 0; i < _srcObjects.size() && _ok; i++)
{ {