Author: simonetripodi
Date: Sat Oct 15 21:10:06 2011
New Revision: 1183714

URL: http://svn.apache.org/viewvc?rev=1183714&view=rev
Log:
added missing javadoc comments

Modified:
    
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/util/IntegerRange.java

Modified: 
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/util/IntegerRange.java
URL: 
http://svn.apache.org/viewvc/commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/util/IntegerRange.java?rev=1183714&r1=1183713&r2=1183714&view=diff
==============================================================================
--- 
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/util/IntegerRange.java
 (original)
+++ 
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/util/IntegerRange.java
 Sat Oct 15 21:10:06 2011
@@ -30,8 +30,19 @@ public final class IntegerRange extends 
     // attributes
     //---------------------------------------------------------------
 
+    /**
+     * The start index.
+     */
     private final int from;
+
+    /**
+     * The end index.
+     */
     private final int to;
+
+    /**
+     * The increment counter.
+     */
     private final int step;
 
     // constructors


Reply via email to