Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2009-04-15 17:28:54 +0000
committerslewis2009-04-15 17:28:54 +0000
commit398611989cf72651f162706b1e8f2b77eda9104f (patch)
tree0c193c4db7a450198ad7ce93ad3deea69d615417 /framework/bundles/org.eclipse.ecf.identity
parent071060601ab0e2fac0ed28d1048e6a20decdf2d3 (diff)
downloadorg.eclipse.ecf-398611989cf72651f162706b1e8f2b77eda9104f.tar.gz
org.eclipse.ecf-398611989cf72651f162706b1e8f2b77eda9104f.tar.xz
org.eclipse.ecf-398611989cf72651f162706b1e8f2b77eda9104f.zip
Added @since tag
Diffstat (limited to 'framework/bundles/org.eclipse.ecf.identity')
-rw-r--r--framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/IResourceID.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/IResourceID.java b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/IResourceID.java
index 9dd553a71..514c96fb1 100644
--- a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/IResourceID.java
+++ b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/IResourceID.java
@@ -3,15 +3,18 @@ package org.eclipse.ecf.core.identity;
import java.net.URI;
/**
- * Resource id. ID instances that implement this interface
- * are expected to be resources (files, directories, URLs, etc)
- * and so can be identified via a {@link URI}.
+ * Resource id. ID instances that implement this interface are expected to be
+ * resources (files, directories, URLs, etc) and so can be identified via a
+ * {@link URI}.
+ *
+ * @since 3.0
*
*/
public interface IResourceID extends ID {
/**
* Convert this resource ID to a {@link URI}.
+ *
* @return URI for this resource ID
*/
public URI toURI();

Back to the top