Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-03-07 22:22:40 +0000
committerslewis2007-03-07 22:22:40 +0000
commit4ff227ee23856caac86de2f808aa2b9018809086 (patch)
tree3391b9f3fc97c49e38bd866339b06b0dbaf4b62f /framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse
parent5253f8c6a8b54575718789e3439b5d2bdf5b5427 (diff)
downloadorg.eclipse.ecf-4ff227ee23856caac86de2f808aa2b9018809086.tar.gz
org.eclipse.ecf-4ff227ee23856caac86de2f808aa2b9018809086.tar.xz
org.eclipse.ecf-4ff227ee23856caac86de2f808aa2b9018809086.zip
Added IAdaptable to IDiscoveryContainerAdapter
Diffstat (limited to 'framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse')
-rw-r--r--framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/discovery/IDiscoveryContainerAdapter.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/discovery/IDiscoveryContainerAdapter.java b/framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/discovery/IDiscoveryContainerAdapter.java
index a675d7b97..756531d97 100644
--- a/framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/discovery/IDiscoveryContainerAdapter.java
+++ b/framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/discovery/IDiscoveryContainerAdapter.java
@@ -11,6 +11,7 @@ package org.eclipse.ecf.discovery;
import java.io.IOException;
+import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.ecf.discovery.identity.ServiceID;
/**
@@ -27,7 +28,7 @@ import org.eclipse.ecf.discovery.identity.ServiceID;
* implementation.
*
*/
-public interface IDiscoveryContainerAdapter {
+public interface IDiscoveryContainerAdapter extends IAdaptable {
/**
* Add a service listener. The given listener will have its method called
* when a service with a type matching that specified by the first parameter

Back to the top