update author list in license for (JAL-826)
[jalview.git] / src / jalview / ws / params / ArgumentI.java
index 2f42838..09eecca 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6)
- * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
+ * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle
  * 
  * This file is part of Jalview.
  * 
@@ -19,12 +19,22 @@ package jalview.ws.params;
 
 public interface ArgumentI
 {
+  /**
+   * 
+   * @return name for this argument
+   */
   String getName();
 
-  // TODO: rename setDefaultValue to setValue - to make it more semantically
-  // obvious what it means!
-  String getDefaultValue();
+  /**
+   * 
+   * @return current value for the argument (may equal the name)
+   */
+  String getValue();
 
-  void setDefaultValue(String selectedItem);
+  /**
+   * set the current value for the argument.
+   * @param selectedItem
+   */
+  void setValue(String selectedItem);
 
 }