mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-10 10:35:23 +02:00
better transfer message
This commit is contained in:
parent
85532fc260
commit
d6b97765f8
4 changed files with 7 additions and 8 deletions
|
@ -365,14 +365,13 @@ public class DStoreFileService extends AbstractDStoreService implements IFileSer
|
||||||
IHostFile created = createFile(monitor, remoteParent, remoteFile);
|
IHostFile created = createFile(monitor, remoteParent, remoteFile);
|
||||||
return created.exists();
|
return created.exists();
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
SubProgressMonitor subMonitor = null;
|
|
||||||
if (monitor != null)
|
if (monitor != null)
|
||||||
{
|
{
|
||||||
monitor.subTask(file.getName());
|
monitor.setTaskName(file.getName());
|
||||||
subMonitor = new SubProgressMonitor(monitor, (int)totalBytes);
|
//subMonitor = new SubProgressMonitor(monitor, (int)totalBytes);
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
DataElement uploadLog = findUploadLog();
|
DataElement uploadLog = findUploadLog();
|
||||||
// listener = new FileTransferStatusListener(remotePath, shell, monitor, getConnectorService(), ds, uploadLog);
|
// listener = new FileTransferStatusListener(remotePath, shell, monitor, getConnectorService(), ds, uploadLog);
|
||||||
|
|
|
@ -32,7 +32,7 @@ public class GenericMessages extends NLS
|
||||||
public static String RefreshAction_locationDeletedMessage;
|
public static String RefreshAction_locationDeletedMessage;
|
||||||
public static String RefreshAction_dialogTitle;
|
public static String RefreshAction_dialogTitle;
|
||||||
|
|
||||||
public static String DragAndDropOperation_message;
|
public static String TransferOperation_message;
|
||||||
public static String RSESubSystemOperation_message;
|
public static String RSESubSystemOperation_message;
|
||||||
public static String RSESubSystemOperation_Connect_message;
|
public static String RSESubSystemOperation_Connect_message;
|
||||||
public static String RSESubSystemOperation_Disconnect_message;
|
public static String RSESubSystemOperation_Disconnect_message;
|
||||||
|
|
|
@ -40,7 +40,7 @@ FileExtension_extensionEmptyMessage = The file extension cannot be empty
|
||||||
FileExtension_fileNameInvalidMessage = The file name cannot include the wild card character (*) in the current location
|
FileExtension_fileNameInvalidMessage = The file name cannot include the wild card character (*) in the current location
|
||||||
FilteredPreferenceDialog_PreferenceSaveFailed=Preferences save failed.
|
FilteredPreferenceDialog_PreferenceSaveFailed=Preferences save failed.
|
||||||
|
|
||||||
DragAndDropOperation_message = Drag and Drop Operation
|
TransferOperation_message = Transfer Operation
|
||||||
RSESubSystemOperation_message = RSE SubSystem Operation:
|
RSESubSystemOperation_message = RSE SubSystem Operation:
|
||||||
RSESubSystemOperation_Connect_message = Connect
|
RSESubSystemOperation_Connect_message = Connect
|
||||||
RSESubSystemOperation_Disconnect_message = Disconnect
|
RSESubSystemOperation_Disconnect_message = Disconnect
|
||||||
|
|
|
@ -72,7 +72,7 @@ public class SystemDNDTransferRunnable extends UIJob
|
||||||
|
|
||||||
public SystemDNDTransferRunnable(Object target, ArrayList srcObjects, Viewer originatingViewer, int sourceType)
|
public SystemDNDTransferRunnable(Object target, ArrayList srcObjects, Viewer originatingViewer, int sourceType)
|
||||||
{
|
{
|
||||||
super(GenericMessages.DragAndDropOperation_message);
|
super(GenericMessages.TransferOperation_message);
|
||||||
_srcObjects = srcObjects;
|
_srcObjects = srcObjects;
|
||||||
_currentTarget = target;
|
_currentTarget = target;
|
||||||
_sourceType = sourceType;
|
_sourceType = sourceType;
|
||||||
|
|
Loading…
Add table
Reference in a new issue