summaryrefslogtreecommitdiff
path: root/src/main/java/com/amazon/carbonado/Independent.java
diff options
context:
space:
mode:
authorBrian S. O'Neill <bronee@gmail.com>2008-04-19 21:28:19 +0000
committerBrian S. O'Neill <bronee@gmail.com>2008-04-19 21:28:19 +0000
commit59185851eda16b725d47a56ec71d954944522400 (patch)
tree353de8c2e06057acdbd2b1bfca48a00066c08ee2 /src/main/java/com/amazon/carbonado/Independent.java
parent675c72f1e6819e75aff99dd140c83a93b5372026 (diff)
Use Javadoc literals.
Diffstat (limited to 'src/main/java/com/amazon/carbonado/Independent.java')
-rw-r--r--src/main/java/com/amazon/carbonado/Independent.java19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/main/java/com/amazon/carbonado/Independent.java b/src/main/java/com/amazon/carbonado/Independent.java
index ab4b50b..92024e1 100644
--- a/src/main/java/com/amazon/carbonado/Independent.java
+++ b/src/main/java/com/amazon/carbonado/Independent.java
@@ -28,18 +28,19 @@ import java.lang.annotation.*;
* makes the property or type unsupported. Any subsequent invocation of a property access
* method for the independent type or property will cause an UnsupportedOperationException
* to be thrown.
- * <p>
- * One example of when this might be used would be to store a calculated field in the cached
- * representation of the object. It is <b>not</b> necessary to prevent implemented methods
- * of the form "get&lt;value&gt;" from being inadvertently interpreted as properties of the
- * storable; any implementation is by definition not a property.
- * <p>
- * If a correctly matching property actually is found, then this annotation is
- * ignored and the property or type is defined as usual. If the Repository
+ *
+ * <p>One example of when this might be used would be to store a calculated
+ * field in the cached representation of the object. It is <b>not</b>
+ * necessary to prevent implemented methods of the form {@literal "get<value>"}
+ * from being inadvertently interpreted as properties of the storable; any
+ * implementation is by definition not a property.
+ *
+ * <p>If a correctly matching property actually is found, then this annotation
+ * is ignored and the property or type is defined as usual. If the Repository
* finds a property whose name matches, but whose type does not match, a
* MismatchException will be thrown regardless of this annotation.
*
- * <P>Independent repositories completely ignore this annotation.
+ * <p>Independent repositories completely ignore this annotation.
*
* <p>Example:<pre>
* public interface UserInfo extends Storable&lt;UserInfo&gt; {