generate for in range

This commit is contained in:
Dmitry Jemerov
2011-05-20 14:26:49 +02:00
parent 4c7768b47d
commit 8cf0524268
3 changed files with 155 additions and 49 deletions
+8
View File
@@ -17,4 +17,12 @@ public class IntRange implements Range<Integer> {
}
return item <= startValue && item >= endValue;
}
public int getStartValue() {
return startValue;
}
public int getEndValue() {
return endValue;
}
}