Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2016-12-03 21:53:32 +0000
committerslewis2016-12-03 21:53:32 +0000
commit87a4dd40185dd0744545984c8d76aabd5abbea2f (patch)
treebdd3877ac9e25bb823a3cd730c5679b10d74e08e
parent367b397c30ef8251017d0ad4227cc304f811eb19 (diff)
downloadorg.eclipse.ecf-87a4dd40185dd0744545984c8d76aabd5abbea2f.tar.gz
org.eclipse.ecf-87a4dd40185dd0744545984c8d76aabd5abbea2f.tar.xz
org.eclipse.ecf-87a4dd40185dd0744545984c8d76aabd5abbea2f.zip
Added getContext to ExtensionRegistryRunnable.
-rw-r--r--framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/ExtensionRegistryRunnable.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/ExtensionRegistryRunnable.java b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/ExtensionRegistryRunnable.java
index 9ac8ef254..9f3942d8e 100644
--- a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/ExtensionRegistryRunnable.java
+++ b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/ExtensionRegistryRunnable.java
@@ -24,6 +24,13 @@ public class ExtensionRegistryRunnable implements ISafeRunnable {
this.context = ctxt;
}
+ /**
+ * @since 3.8
+ */
+ protected BundleContext getContext() {
+ return this.context;
+ }
+
protected void runWithoutRegistry() throws Exception {
// by default do nothing
}

Back to the top