Jalview 2.8 Source Header
[jalview.git] / src / jalview / ws / params / ArgumentI.java
index 860192c..9caa4db 100644 (file)
@@ -1,13 +1,13 @@
 /*
- * 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.8)
+ * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle
  * 
  * This file is part of Jalview.
  * 
  * Jalview is free software: you can redistribute it and/or
  * modify it under the terms of the GNU General Public License 
  * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
- * 
+ *  
  * Jalview is distributed in the hope that it will be useful, but 
  * WITHOUT ANY WARRANTY; without even the implied warranty 
  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
@@ -19,9 +19,23 @@ 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();
-  void setDefaultValue(String selectedItem);
+
+  /**
+   * 
+   * @return current value for the argument (may equal the name)
+   */
+  String getValue();
+
+  /**
+   * set the current value for the argument.
+   * 
+   * @param selectedItem
+   */
+  void setValue(String selectedItem);
 
 }