Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Schwarz2015-02-26 10:35:17 +0000
committerTobias Schwarz2015-02-26 10:35:59 +0000
commite4fa36b0d42f2f44f08ce01f2cf75b4baa1eeb31 (patch)
treedcb8368bad94a1cebe2029579c4d0eeb86926975
parentc77847ab5f57aedeab37401f3ea58fd27bd13b94 (diff)
downloadorg.eclipse.tcf-e4fa36b0d42f2f44f08ce01f2cf75b4baa1eeb31.tar.gz
org.eclipse.tcf-e4fa36b0d42f2f44f08ce01f2cf75b4baa1eeb31.tar.xz
org.eclipse.tcf-e4fa36b0d42f2f44f08ce01f2cf75b4baa1eeb31.zip
SM: add possibility to set default data when no history entry is
available
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/handler/AbstractContextStepperCommandHandler.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/handler/AbstractContextStepperCommandHandler.java b/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/handler/AbstractContextStepperCommandHandler.java
index 18450f682..d8f166f15 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/handler/AbstractContextStepperCommandHandler.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/handler/AbstractContextStepperCommandHandler.java
@@ -75,6 +75,10 @@ public abstract class AbstractContextStepperCommandHandler extends AbstractStepp
}
}
+ return getDefaultData();
+ }
+
+ protected IPropertiesContainer getDefaultData() {
return new PropertiesContainer();
}

Back to the top