Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTod Creasey2003-11-07 20:13:16 +0000
committerTod Creasey2003-11-07 20:13:16 +0000
commitceac73848c765163a8e8ff8509e59244a0c52a36 (patch)
tree3c08f1e8e1447e159b2ebd401923f67faa910752 /bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPartSite.java
parent31b0e7d80bf2cc1266ca3beeb3a06d8787149c9a (diff)
downloadeclipse.platform.ui-ceac73848c765163a8e8ff8509e59244a0c52a36.tar.gz
eclipse.platform.ui-ceac73848c765163a8e8ff8509e59244a0c52a36.tar.xz
eclipse.platform.ui-ceac73848c765163a8e8ff8509e59244a0c52a36.zip
Added support for job aware views
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPartSite.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPartSite.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPartSite.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPartSite.java
index 159f87582c7..6b9b589f7b8 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPartSite.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPartSite.java
@@ -10,6 +10,7 @@
*******************************************************************************/
package org.eclipse.ui;
+import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.jface.action.MenuManager;
import org.eclipse.jface.viewers.ISelectionProvider;
@@ -115,4 +116,17 @@ public void registerContextMenu(MenuManager menuManager,
public IKeyBindingService getKeyBindingService();
//IContextActivationService getContextActivationService();
+
+/**
+ * Progress on a job that blocks the site has begun.
+ * @param Job the job starting.
+ */
+public void progressStart(Job job);
+
+/**
+ * Progress on a job that blocks the site has finished.
+ * @param Job the job finishing.
+ */
+public void progressEnd(Job job);
+
}

Back to the top