Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ianj-als/omtc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Johnson <ian.johnson@appliedlanguage.com>2013-02-20 19:28:51 +0400
committerIan Johnson <ian.johnson@appliedlanguage.com>2013-02-20 19:28:51 +0400
commit70018a06297ffaeeb3e7b4d3de473812be2daf97 (patch)
tree831eaf27db84c6f70badd77565b929149f90d40e
parent4abc992b7cd02b640d30b7c323df19a8c55657aa (diff)
Formatting problems fixed.
-rw-r--r--src/main/java/com/capitati/omtc/core/resources/IResource.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/main/java/com/capitati/omtc/core/resources/IResource.java b/src/main/java/com/capitati/omtc/core/resources/IResource.java
index 918af47..d7cf14d 100644
--- a/src/main/java/com/capitati/omtc/core/resources/IResource.java
+++ b/src/main/java/com/capitati/omtc/core/resources/IResource.java
@@ -34,20 +34,20 @@ public interface IResource {
*
* @return A resource's unqiue identifier as a {@link java.util.UUID} object.
*/
- UUID getIdentifier();
+ UUID getIdentifier();
- /**
- * Retrieve the location of the resource. The scheme of the URI shall
- * determine how to access the resource; this is implementation defined.
- *
- * @return A resource's location as a {@link java.net.URI} object.
- */
- URI getURI();
+ /**
+ * Retrieve the location of the resource. The scheme of the URI shall
+ * determine how to access the resource; this is implementation defined.
+ *
+ * @return A resource's location as a {@link java.net.URI} object.
+ */
+ URI getURI();
- /**
- * Retrieve the creation date of the resource.
- *
- * @return A resource's creation date as a {@link java.util.Date} object.
- */
- Date getBirthDate();
+ /**
+ * Retrieve the creation date of the resource.
+ *
+ * @return A resource's creation date as a {@link java.util.Date} object.
+ */
+ Date getBirthDate();
}