Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-10-26 02:42:14 +0000
committerslewis2007-10-26 02:42:14 +0000
commitac9ca0d488ac31967225e3beec3362499bd1d0ae (patch)
tree0f2afd86daed58d40fe218807f04b39e7ab88407
parent4a342c5f8a614f80f78984fec8fa22cc443fdc9d (diff)
downloadorg.eclipse.ecf-ac9ca0d488ac31967225e3beec3362499bd1d0ae.tar.gz
org.eclipse.ecf-ac9ca0d488ac31967225e3beec3362499bd1d0ae.tar.xz
org.eclipse.ecf-ac9ca0d488ac31967225e3beec3362499bd1d0ae.zip
Fixed errors in javadocs
-rw-r--r--framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/internal/discovery/DiscoveryPlugin.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/internal/discovery/DiscoveryPlugin.java b/framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/internal/discovery/DiscoveryPlugin.java
index 697bf4337..72792f80c 100644
--- a/framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/internal/discovery/DiscoveryPlugin.java
+++ b/framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/internal/discovery/DiscoveryPlugin.java
@@ -29,12 +29,16 @@ public class DiscoveryPlugin implements BundleActivator {
/**
* This method is called upon plug-in activation
+ * @param context
+ * @throws Exception
*/
public void start(BundleContext context) throws Exception {
}
/**
* This method is called when the plug-in is stopped
+ * @param context
+ * @throws Exception
*/
public void stop(BundleContext context) throws Exception {
plugin = null;
@@ -42,6 +46,7 @@ public class DiscoveryPlugin implements BundleActivator {
/**
* Returns the shared instance.
+ * @return default discovery plugin instance.
*/
public synchronized static DiscoveryPlugin getDefault() {
if (plugin == null) {

Back to the top