JAL-3066 Create labels for fields and hack it to work with multiple valued parameters
[jalview.git] / src / jalview / ws / params / ArgumentI.java
index 1554a7b..a5cb473 100644 (file)
@@ -30,6 +30,15 @@ public interface ArgumentI
 
   /**
    * 
+   * @return display name of this argument
+   */
+  default String getLabel()
+  {
+    return getName();
+  };
+
+  /**
+   * 
    * @return current value for the argument (may equal the name)
    */
   String getValue();