Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/discovery/IServiceInfo.java')
-rw-r--r--framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/discovery/IServiceInfo.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/discovery/IServiceInfo.java b/framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/discovery/IServiceInfo.java
index 11691dd9a..aefd7c119 100644
--- a/framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/discovery/IServiceInfo.java
+++ b/framework/bundles/org.eclipse.ecf.discovery/src/org/eclipse/ecf/discovery/IServiceInfo.java
@@ -22,7 +22,7 @@ public interface IServiceInfo {
/**
* Get InetAddress for service
*
- * @return InetAddress the address for the service. May be null if address
+ * @return InetAddress the address for the service. May be <code>null</code> if address
* is not known.
*/
public InetAddress getAddress();
@@ -30,7 +30,7 @@ public interface IServiceInfo {
/**
* Get ServiceID for service.
*
- * @return ServiceID the serviceID for the service. Must not be null.
+ * @return ServiceID the serviceID for the service. Will not be <code>null</code>.
*/
public ServiceID getServiceID();
@@ -59,7 +59,7 @@ public interface IServiceInfo {
* Map with any/all properties associated with the service. Properties are
* assumed to be name/value pairs, both of type String.
*
- * @return Map the properties associated with this service
+ * @return Map the properties associated with this service. Will not be <code>null</code>.
*/
public IServiceProperties getServiceProperties();

Back to the top