From 5eda18167309230e79c94de6902d576d38acb863 Mon Sep 17 00:00:00 2001 From: krichter722 Date: Tue, 20 Dec 2016 17:53:57 +0100 Subject: [PATCH] added missing constraint descriptions in OptionValueConstraintType (#62) --- .../com/southsky/jfreesane/OptionValueConstraintType.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/au/com/southsky/jfreesane/OptionValueConstraintType.java b/src/main/java/au/com/southsky/jfreesane/OptionValueConstraintType.java index 34d31fe..742f1ac 100644 --- a/src/main/java/au/com/southsky/jfreesane/OptionValueConstraintType.java +++ b/src/main/java/au/com/southsky/jfreesane/OptionValueConstraintType.java @@ -16,18 +16,18 @@ public enum OptionValueConstraintType implements SaneEnum { /** * The option's value is constrained to some range of values. */ - RANGE_CONSTRAINT(1, ""), + RANGE_CONSTRAINT(1, "Range constraint"), /** * The option's value is constrained to some list of values. */ - VALUE_LIST_CONSTRAINT(2, ""), + VALUE_LIST_CONSTRAINT(2, "Value list constraint"), /** * The option's value type is {@link OptionValueType#STRING} and its value is constrained to some * list of string values. */ - STRING_LIST_CONSTRAINT(3, ""); + STRING_LIST_CONSTRAINT(3, "String list constraint"); private final int wireValue; private final String description;