Some Javadoc fixing. Though it's very annoying that I have to use @

instead of @. Thanks for making things totally unreadable in the source file
javadoc. How about \@ instead?
This commit is contained in:
Michael Bayne
2010-08-27 18:11:22 +00:00
parent 026e49518c
commit 3f7a7be9da
3 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -121,7 +121,7 @@
<exclude name="com/samskivert/depot/impl/**"/>
</packageset>
<bottom>Copyright &#169; 2006-${year} ${copyright.holder}. All Rights Reserved.</bottom>
<classpath refid="classpath"/>
<classpath refid="tools.classpath"/>
<link href="http://java.sun.com/j2se/1.5/docs/api/"/>
</javadoc>
</target>
@@ -47,7 +47,7 @@ import com.google.common.collect.Sets;
* specify it via a {@link Column} annotation. For example:
* <pre>
* public class MyRecord extends PersistentRecord {
* @Transform(Transformers.StringArray.class)
* &#064;Transform(Transformers.StringArray.class)
* public String[] cities;
* }
* </pre>
@@ -26,6 +26,7 @@ import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import com.samskivert.depot.PersistentRecord;
import com.samskivert.depot.Transformer;
/**
@@ -38,7 +39,7 @@ import com.samskivert.depot.Transformer;
*
* <pre>
* public class MyRecord extends PersistentRecord {
* @Transform(Transformers.CommaSeparatedString.class)
* &#064;Transform(Transformers.CommaSeparatedString.class)
* public String[] cities;
* }
* </pre>
@@ -47,7 +48,7 @@ import com.samskivert.depot.Transformer;
* type:
*
* <pre>
* @Transform(ByteEnumTransformer.class)
* &#064;Transform(ByteEnumTransformer.class)
* public interface ByteEnum { ... }
* </pre>
*