1
0
Fork 0
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:
David McKnight 2008-03-28 18:29:56 +00:00
parent 7cb6301408
commit 145f846449

View file

@ -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$