JAL-1503 update version in GPL header
[jalview.git] / src / jalview / ws / params / simple / Option.java
index eb993c2..0ce9f09 100644 (file)
@@ -1,3 +1,21 @@
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.1)
+ * Copyright (C) 2014 The Jalview Authors
+ * 
+ * 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 
+ * PURPOSE.  See the GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
+ * The Jalview Authors are detailed in the 'AUTHORS' file.
+ */
 package jalview.ws.params.simple;
 
 import jalview.ws.params.OptionI;
@@ -7,13 +25,17 @@ import java.util.ArrayList;
 import java.util.Collection;
 import java.util.List;
 
-public class Option implements OptionI {
+public class Option implements OptionI
+{
+
+  String name, value, defvalue, description;
+
+  ArrayList<String> possibleVals = new ArrayList<String>();
 
-  
-  String name, value, defvalue,description;
-  ArrayList<String> possibleVals=new ArrayList<String>();
   boolean required;
+
   URL fdetails;
+
   @Override
   public String getName()
   {
@@ -23,7 +45,7 @@ public class Option implements OptionI {
   @Override
   public String getValue()
   {
-    return value==null ? defvalue : value;
+    return value == null ? defvalue : value;
   }
 
   @Override
@@ -55,35 +77,39 @@ public class Option implements OptionI {
   {
     return possibleVals;
   }
+
   public Option(Option opt)
   {
     name = new String(opt.name);
-    if (opt.value!=null) 
+    if (opt.value != null)
       value = new String(opt.value);
-    if (opt.defvalue!=null)
-      defvalue=new String(opt.defvalue);
-    if (opt.description!=null)
-      description=new String(opt.description);
-    if (opt.possibleVals!=null) {
-      possibleVals = (ArrayList<String>)opt.possibleVals.clone();
+    if (opt.defvalue != null)
+      defvalue = new String(opt.defvalue);
+    if (opt.description != null)
+      description = new String(opt.description);
+    if (opt.possibleVals != null)
+    {
+      possibleVals = (ArrayList<String>) opt.possibleVals.clone();
     }
     required = opt.required;
     // URLs are singletons - so we copy by reference. nasty but true.
     fdetails = opt.fdetails;
   }
+
   public Option()
   {
   }
 
   public Option(String name2, String description2, boolean isrequired,
-          String defValue, String value, Collection<String> possibleVals, URL fdetails)
+          String defValue, String value, Collection<String> possibleVals,
+          URL fdetails)
   {
     name = name2;
     description = description2;
     this.value = value;
     this.required = isrequired;
     this.defvalue = defValue;
-    if (possibleVals!=null)
+    if (possibleVals != null)
     {
       this.possibleVals = new ArrayList<String>();
       this.possibleVals.addAll(possibleVals);
@@ -91,11 +117,10 @@ public class Option implements OptionI {
     this.fdetails = fdetails;
   }
 
-
   @Override
   public OptionI copy()
   {
     Option opt = new Option(this);
     return opt;
   }
-}
\ No newline at end of file
+}