Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/provisional/IAsynchronousDisconnectAdapter.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/provisional/IAsynchronousDisconnectAdapter.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/provisional/IAsynchronousDisconnectAdapter.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/provisional/IAsynchronousDisconnectAdapter.java
deleted file mode 100644
index bb603ca4e..000000000
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/provisional/IAsynchronousDisconnectAdapter.java
+++ /dev/null
@@ -1,45 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 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.debug.internal.ui.actions.provisional;
-
-import org.eclipse.debug.internal.ui.viewers.provisional.IAsynchronousRequestMonitor;
-
-/**
- * Adapter for disconnecting.
- *
- * @since 3.2
- */
-public interface IAsynchronousDisconnectAdapter {
-
- /**
- * Asynchronously determines whether the given element can be disconnected.
- *
- * @param element element
- * @param monitor request monitor
- */
- public void canDisconnect(Object element, IBooleanRequestMonitor monitor);
-
- /**
- * Asynchronously determines whether the given element is disconnected.
- *
- * @param element element
- * @param monitor request monitor
- */
- public void isDisconnected(Object element, IBooleanRequestMonitor monitor);
-
- /**
- * Asynchronously disconnects the given element.
- *
- * @param element element
- * @param monitor request monitor
- */
- public void disconnect(Object element, IAsynchronousRequestMonitor monitor);
-}

Back to the top