Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2009-08-12 03:57:19 +0000
committerspingel2009-08-12 03:57:19 +0000
commit9961040717ba07c5a0ed82514cf8842d63c5097d (patch)
tree9dcd3da1fb7ac7382db6eeb67cde0503e409d6db /org.eclipse.mylyn.tasks.core
parente2ff9eca613c1e4b1e7798aa10ad25e097e023e8 (diff)
downloadorg.eclipse.mylyn.tasks-9961040717ba07c5a0ed82514cf8842d63c5097d.tar.gz
org.eclipse.mylyn.tasks-9961040717ba07c5a0ed82514cf8842d63c5097d.tar.xz
org.eclipse.mylyn.tasks-9961040717ba07c5a0ed82514cf8842d63c5097d.zip
RESOLVED - bug 284172: [api] provide access to progress monitor to allow monitoring synchronization jobs in progress
https://bugs.eclipse.org/bugs/show_bug.cgi?id=284172
Diffstat (limited to 'org.eclipse.mylyn.tasks.core')
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/sync/SynchronizationJob.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/sync/SynchronizationJob.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/sync/SynchronizationJob.java
index f2386dfa2..74018ae7a 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/sync/SynchronizationJob.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/sync/SynchronizationJob.java
@@ -26,6 +26,9 @@ public abstract class SynchronizationJob extends Job {
private boolean fullSynchronization = false;
+ /**
+ * @since 3.3
+ */
protected final IDelegatingProgressMonitor monitor;
/**
@@ -58,6 +61,9 @@ public abstract class SynchronizationJob extends Job {
this.fullSynchronization = fullSynchronization;
}
+ /**
+ * @since 3.3
+ */
public IDelegatingProgressMonitor getMonitor() {
return monitor;
}

Back to the top