Revision: 419
http://svn.sourceforge.net/japi/?rev=419&view=rev
Author: christianhujer
Date: 2007-06-17 10:15:30 -0700 (Sun, 17 Jun 2007)
Log Message:
-----------
Changed @Option to be @Documented.
Modified Paths:
--------------
libs/argparser/trunk/src/net/sf/japi/io/args/Option.java
Modified: libs/argparser/trunk/src/net/sf/japi/io/args/Option.java
===================================================================
--- libs/argparser/trunk/src/net/sf/japi/io/args/Option.java 2007-06-16 16:36:50 UTC (rev 418)
+++ libs/argparser/trunk/src/net/sf/japi/io/args/Option.java 2007-06-17 17:15:30 UTC (rev 419)
@@ -19,6 +19,7 @@
package net.sf.japi.io.args;
+import java.lang.annotation.Documented;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@@ -28,6 +29,7 @@
* Annotation to mark a method as command argument method.
* @author <a href="mailto:ch...@ri...">Christian Hujer</a>
*/
+@Documented
@Retention(RUNTIME)
@Target(METHOD)
public @interface Option {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|