summaryrefslogtreecommitdiffstats
path: root/src/de/fhswf/in/inf/se/notepadMinusMinus/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/fhswf/in/inf/se/notepadMinusMinus/util')
-rw-r--r--src/de/fhswf/in/inf/se/notepadMinusMinus/util/OverLimitIntegerStringConverter.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/de/fhswf/in/inf/se/notepadMinusMinus/util/OverLimitIntegerStringConverter.java b/src/de/fhswf/in/inf/se/notepadMinusMinus/util/OverLimitIntegerStringConverter.java
index edc1975..30e3f8d 100644
--- a/src/de/fhswf/in/inf/se/notepadMinusMinus/util/OverLimitIntegerStringConverter.java
+++ b/src/de/fhswf/in/inf/se/notepadMinusMinus/util/OverLimitIntegerStringConverter.java
@@ -6,19 +6,21 @@ package de.fhswf.in.inf.se.notepadMinusMinus.util;
import javafx.util.StringConverter;
/**
- * TODO Add comment here
+ * An {@link Integer} converter that checks the boundaries.
*
- * @author $Author: $
- * @version $Revision: $, $Date: $ UTC
+ * @author Stefan Suhren
+ * @version 1.0
*/
public class OverLimitIntegerStringConverter extends StringConverter<Integer>
{
private int minAllowedValue;
/**
- * TODO Add constructor comment here
+ * Create and {@link OverLimitIntegerStringConverter} that uses the given
+ * limit.
*
* @param minAllowedValue
+ * The smallest values that is still valid.
*/
public OverLimitIntegerStringConverter(int minAllowedValue)
{