Finish the SizeView by using a JSpinner.
[Persons_Comparator.git] / src / Size.java
index 6946e5a8967e2358072fccd1fb7fa13e619e9f9d..a0e7d780900685c817fd46e26a46ffb5303614c5 100644 (file)
@@ -1,6 +1,6 @@
 public class Size implements Comparable<Size> {
     private int max = 240;
-    private int min = 20;
+    private int min = 40;
     private int size;
 
     Size() {
@@ -10,6 +10,14 @@ public class Size implements Comparable<Size> {
         setSize(size);
     }
 
+    public int getMin() {
+        return min;
+    }
+
+    public int getMax() {
+        return max;
+    }
+
     public int getSize() {
         return size;
     }
@@ -18,7 +26,7 @@ public class Size implements Comparable<Size> {
         if (validateSize(size)) {
             this.size = size;
         } else {
-            throw new IllegalArgumentException("Size must be between " + this.min + " and " + this.max);
+            throw new IllegalArgumentException("Size must be between " + this.getMin() + " and " + this.getMax());
         }
     }