You are viewing a plain text version of this content. The canonical link for it is here.
Posted to torque-dev@db.apache.org by tf...@apache.org on 2012/10/26 21:23:11 UTC

svn commit: r1402619 - /db/torque/torque4/trunk/torque-ant-tasks/src/main/java/org/apache/torque/ant/task/Option.java

Author: tfischer
Date: Fri Oct 26 19:23:11 2012
New Revision: 1402619

URL: http://svn.apache.org/viewvc?rev=1402619&view=rev
Log:
add javadoc

Modified:
    db/torque/torque4/trunk/torque-ant-tasks/src/main/java/org/apache/torque/ant/task/Option.java

Modified: db/torque/torque4/trunk/torque-ant-tasks/src/main/java/org/apache/torque/ant/task/Option.java
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-ant-tasks/src/main/java/org/apache/torque/ant/task/Option.java?rev=1402619&r1=1402618&r2=1402619&view=diff
==============================================================================
--- db/torque/torque4/trunk/torque-ant-tasks/src/main/java/org/apache/torque/ant/task/Option.java (original)
+++ db/torque/torque4/trunk/torque-ant-tasks/src/main/java/org/apache/torque/ant/task/Option.java Fri Oct 26 19:23:11 2012
@@ -18,28 +18,54 @@ package org.apache.torque.ant.task;
  * specific language governing permissions and limitations
  * under the License.
  */
-
+/**
+ * An option for the generator task.
+ *
+ * @version $Id$
+ */
 public class Option
 {
+    /** The key of the option. */
     private String key;
 
+    /** The value of the option. */
     private String value;
 
+    /**
+     * Returns the key of the option.
+     *
+     * @return the key of the option.
+     */
     public String getKey()
     {
         return key;
     }
 
+    /**
+     * Sets the key of the option.
+     *
+     * @param key the key of the option.
+     */
     public void setKey(String key)
     {
         this.key = key;
     }
 
+    /**
+     * Returns the value of the option.
+     *
+     * @return the value of the option.
+     */
     public String getValue()
     {
         return value;
     }
 
+    /**
+     * Sets the value of the option.
+     *
+     * @param value the value of the option.
+     */
     public void setValue(String value)
     {
         this.value = value;



---------------------------------------------------------------------
To unsubscribe, e-mail: torque-dev-unsubscribe@db.apache.org
For additional commands, e-mail: torque-dev-help@db.apache.org