Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/datamodel/IDataModelPausibleOperationListener.java')
-rw-r--r--plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/datamodel/IDataModelPausibleOperationListener.java60
1 files changed, 0 insertions, 60 deletions
diff --git a/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/datamodel/IDataModelPausibleOperationListener.java b/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/datamodel/IDataModelPausibleOperationListener.java
deleted file mode 100644
index 865f4723f..000000000
--- a/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/datamodel/IDataModelPausibleOperationListener.java
+++ /dev/null
@@ -1,60 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2003, 2006 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.common.frameworks.internal.datamodel;
-
-/**
- * <p>
- * Used to listen for {@link IDataModelPausibleOperationEvent}s fired from {@link IDataModelPausibleOperation}s.
- * </p>
- *
- * @since 1.5
- */
-public interface IDataModelPausibleOperationListener {
-
- /**
- * <p>
- * Clients should return this constant from {@link #notify(IDataModelPausibleOperationEvent)} to specify that
- * execution should continue.
- * </p>
- */
- public static final int CONTINUE = 0;
-
- /**
- * <p>
- * Clients should return this constant from {@link #notify(IDataModelPausibleOperationEvent)} to specify that
- * execution should pause.
- * </p>
- */
- public static final int PAUSE = 1;
-
-
- /**
- * <p>
- * Listener interface by {@link IDataModelPausibleOperation} for operation execution
- * notification. Prior to starting any operation's execution, notifications will be sent which
- * allow clients to pause an operation's execution. Implementers should return {@link #CONTINUE}
- * to allow the operation's execution to continue or {@link #PAUSE} to pause execution. If
- * {@link #PAUSE} is returned, then the entire operation stack will be paused until it is
- * resumed. The responsiblity for resuming a paused operation lies on the client that paused it.
- * </p>
- *
- * @param event
- * The operation event
- *
- * @return return CONTINUE to continue, or PAUSE to pause.
- *
- * @see IDataModelPausibleOperation#addOperationListener(IDataModelPausibleOperationListener)
- * @see IDataModelPausibleOperation#resume(org.eclipse.core.runtime.IProgressMonitor,
- * org.eclipse.core.runtime.IAdaptable)
- */
- public int notify(IDataModelPausibleOperationEvent event);
-
-}

Back to the top