Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorslewis2007-10-26 03:22:53 +0000
committerslewis2007-10-26 03:22:53 +0000
commit45c2b56983507f2f9deee465edad1f7a9bb3a3b4 (patch)
tree1108a33970bcd6b9b7a092b39b3f91c828df54e6 /tests
parent2eabc2a89c5baa9ab5eda0c40e0259b5ab42d587 (diff)
downloadorg.eclipse.ecf-45c2b56983507f2f9deee465edad1f7a9bb3a3b4.tar.gz
org.eclipse.ecf-45c2b56983507f2f9deee465edad1f7a9bb3a3b4.tar.xz
org.eclipse.ecf-45c2b56983507f2f9deee465edad1f7a9bb3a3b4.zip
Fixed errors in javadocs
Diffstat (limited to 'tests')
-rwxr-xr-xtests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/internal/tests/Activator.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/internal/tests/Activator.java b/tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/internal/tests/Activator.java
index a2c628d25..9a822641c 100755
--- a/tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/internal/tests/Activator.java
+++ b/tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/internal/tests/Activator.java
@@ -17,13 +17,13 @@ public class Activator implements BundleActivator {
// The shared instance
private static Activator plugin;
-
+
private static ServiceTracker idFactoryServiceTracker;
private static IIDFactory idFactory;
-
+
private static ServiceTracker containerFactoryServiceTracker;
private static IContainerFactory containerFactory;
-
+
private static ServiceTracker containerManagerServiceTracker;
/**
@@ -38,13 +38,13 @@ public class Activator implements BundleActivator {
*/
public void start(BundleContext context) throws Exception {
plugin = this;
- idFactoryServiceTracker = new ServiceTracker(context,IIDFactory.class.getName(), null);
+ idFactoryServiceTracker = new ServiceTracker(context, IIDFactory.class.getName(), null);
idFactoryServiceTracker.open();
idFactory = (IIDFactory) idFactoryServiceTracker.getService();
- containerFactoryServiceTracker = new ServiceTracker(context,IContainerFactory.class.getName(),null);
+ containerFactoryServiceTracker = new ServiceTracker(context, IContainerFactory.class.getName(), null);
containerFactoryServiceTracker.open();
containerFactory = (IContainerFactory) containerFactoryServiceTracker.getService();
- containerManagerServiceTracker = new ServiceTracker(context,IContainerManager.class.getName(),null);
+ containerManagerServiceTracker = new ServiceTracker(context, IContainerManager.class.getName(), null);
containerManagerServiceTracker.open();
}
@@ -81,13 +81,13 @@ public class Activator implements BundleActivator {
public IIDFactory getIDFactory() {
return idFactory;
}
-
+
public IContainerFactory getContainerFactory() {
return containerFactory;
}
/**
- * @return
+ * @return container manager.
*/
public IContainerManager getContainerManager() {
return (IContainerManager) containerManagerServiceTracker.getService();

Back to the top