Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2013-05-18 08:16:36 +0000
committerUwe Stieber2013-05-18 08:18:46 +0000
commit2ee1fbe519139aab8bed61efa5ee0d9f26ef5230 (patch)
tree894e37cbdf9da97d1ecfe2487bea78a4631020b9 /target_explorer
parentdf887da6d86eba92b789159f21eb6259001076f8 (diff)
downloadorg.eclipse.tcf-2ee1fbe519139aab8bed61efa5ee0d9f26ef5230.tar.gz
org.eclipse.tcf-2ee1fbe519139aab8bed61efa5ee0d9f26ef5230.tar.xz
org.eclipse.tcf-2ee1fbe519139aab8bed61efa5ee0d9f26ef5230.zip
Target Explorer: Allow to access the status object stored to a callback from outside
Diffstat (limited to 'target_explorer')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/callback/Callback.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/callback/Callback.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/callback/Callback.java
index 91a3aa455..e98642a64 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/callback/Callback.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/callback/Callback.java
@@ -34,7 +34,7 @@ public class Callback extends PropertiesContainer implements ICallback {
protected static final String PROPERTY_PROGRESS_MONITOR = "progressMonitor"; //$NON-NLS-1$
protected static final String PROPERTY_PROGRESS_TICKS = "progressTicks"; //$NON-NLS-1$
protected static final String PROPERTY_IS_DONE = "isDone"; //$NON-NLS-1$
- protected static final String PROPERTY_STATUS = "status"; //$NON-NLS-1$
+ public static final String PROPERTY_STATUS = "status"; //$NON-NLS-1$
/**
* Property: Asynchronous operations can store a result to the callback

Back to the top