Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/IPresentationContext.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/IPresentationContext.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/IPresentationContext.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/IPresentationContext.java
new file mode 100644
index 000000000..89db4618e
--- /dev/null
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/IPresentationContext.java
@@ -0,0 +1,34 @@
+/*******************************************************************************
+ * Copyright (c) 2005 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.viewers;
+
+import org.eclipse.ui.IWorkbenchPart;
+
+/**
+ * Context in which an asynchronous request has been made.
+ * <p>
+ * Clients are may implement and extend this interface to provide
+ * special contexts.
+ * </p>
+ * @since 3.2
+ */
+public interface IPresentationContext {
+
+ /**
+ * Returns the part for which a request is being made
+ * or <code>null</code> if none.
+ *
+ * @return the part for which a request is being made
+ * or <code>null</code>
+ */
+ public IWorkbenchPart getPart();
+
+}

Back to the top