JAL-2714 HMMSearch cutoff by E-Value, Score or None
[jalview.git] / src / jalview / ws / params / simple / StringChoiceParameter.java
index 91d24e0..254eb80 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b1)
- * Copyright (C) 2015 The Jalview Authors
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
  */
 package jalview.ws.params.simple;
 
+import java.util.List;
+
+/**
+ * A parameter with options intended to be rendered as radio buttons
+ */
 public class StringChoiceParameter extends Option
 {
 
+  /**
+   * Constructor
+   * 
+   * @param name
+   * @param description
+   * @param options
+   * @param def
+   */
+  public StringChoiceParameter(String name, String description,
+          List<String> options, String def)
+  {
+    super(name, description, true, def, def, options, null);
+  }
 }