From 145f846449d2a6faac4e9a604329fefd6c3f29fd Mon Sep 17 00:00:00 2001 From: David McKnight Date: Fri, 28 Mar 2008 18:29:56 +0000 Subject: [PATCH] [224313] [api] Create RSE Events for MOVE and COPY holding both source and destination fields --- .../rse/core/events/ISystemRemoteChangeEvents.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/events/ISystemRemoteChangeEvents.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/events/ISystemRemoteChangeEvents.java index ecd686ff891..a18d35ae185 100644 --- a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/events/ISystemRemoteChangeEvents.java +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/events/ISystemRemoteChangeEvents.java @@ -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$