mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 15:45:25 +02:00
[224313] [api] Create RSE Events for MOVE and COPY holding both source and destination fields
This commit is contained in:
parent
7cb6301408
commit
145f846449
1 changed files with 10 additions and 0 deletions
|
@ -140,26 +140,36 @@ public interface ISystemRemoteChangeEvents
|
|||
|
||||
/**
|
||||
* Indicates that the event is for a delete operation
|
||||
*
|
||||
* @since org.eclipse.rse.core 3.0
|
||||
*/
|
||||
public static final String SYSTEM_REMOTE_OPERATION_DELETE = "DELETE"; //$NON-NLS-1$
|
||||
|
||||
/**
|
||||
* Indicates that the event is for a rename operation
|
||||
*
|
||||
* @since org.eclipse.rse.core 3.0
|
||||
*/
|
||||
public static final String SYSTEM_REMOTE_OPERATION_RENAME = "RENAME"; //$NON-NLS-1$
|
||||
|
||||
/**
|
||||
* Indicates that the event is for a create operation
|
||||
*
|
||||
* @since org.eclipse.rse.core 3.0
|
||||
*/
|
||||
public static final String SYSTEM_REMOTE_OPERATION_CREATE = "CREATE"; //$NON-NLS-1$
|
||||
|
||||
/**
|
||||
* Indicates that the event is for a move operation
|
||||
*
|
||||
* @since org.eclipse.rse.core 3.0
|
||||
*/
|
||||
public static final String SYSTEM_REMOTE_OPERATION_MOVE = "MOVE"; //$NON-NLS-1$
|
||||
|
||||
/**
|
||||
* Indicates that the event is for a copy operation
|
||||
*
|
||||
* @since org.eclipse.rse.core 3.0
|
||||
*/
|
||||
public static final String SYSTEM_REMOTE_OPERATION_COPY = "COPY"; //$NON-NLS-1$
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue