Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.ds.tests/bundles_src/tb17/org/eclipse/equinox/ds/tests/tb17/Worker.java')
-rw-r--r--bundles/org.eclipse.equinox.ds.tests/bundles_src/tb17/org/eclipse/equinox/ds/tests/tb17/Worker.java55
1 files changed, 0 insertions, 55 deletions
diff --git a/bundles/org.eclipse.equinox.ds.tests/bundles_src/tb17/org/eclipse/equinox/ds/tests/tb17/Worker.java b/bundles/org.eclipse.equinox.ds.tests/bundles_src/tb17/org/eclipse/equinox/ds/tests/tb17/Worker.java
deleted file mode 100644
index 5c02d20b9..000000000
--- a/bundles/org.eclipse.equinox.ds.tests/bundles_src/tb17/org/eclipse/equinox/ds/tests/tb17/Worker.java
+++ /dev/null
@@ -1,55 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 1997-2009 by ProSyst Software GmbH
- * http://www.prosyst.com
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * ProSyst Software GmbH - initial API and implementation
- *******************************************************************************/
-package org.eclipse.equinox.ds.tests.tb17;
-
-import java.util.Dictionary;
-import java.util.Properties;
-
-import org.eclipse.equinox.ds.tests.tbc.PropertiesProvider;
-import org.eclipse.equinox.ds.tests.tbc.ComponentContextProvider;
-import org.osgi.framework.ServiceRegistration;
-import org.osgi.service.component.ComponentConstants;
-import org.osgi.service.component.ComponentContext;
-
-
-public class Worker implements PropertiesProvider, ComponentContextProvider {
- private Dictionary properties;
- private ComponentContext ctxt;
- private ServiceRegistration sr;
-
- protected void activate(ComponentContext ctxt) {
- this.ctxt = ctxt;
- properties = ctxt.getProperties();
-
- Object prop = properties.get(ComponentConstants.COMPONENT_NAME);
- if (prop != null) {
- Properties serviceProps = new Properties();
- serviceProps.put(ComponentConstants.COMPONENT_NAME, prop);
- sr = ctxt.getBundleContext().registerService(PropertiesProvider.class.getName(), this, serviceProps);
- }
- }
-
- protected void deactivate(ComponentContext ctxt) {
- if (sr != null) {
- sr.unregister();
- sr = null;
- }
- }
-
- public Dictionary getProperties() {
- return properties;
- }
-
- public ComponentContext getComponentContext() {
- return ctxt;
- }
-}

Back to the top