X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fparams%2Fsimple%2FOption.java;h=0ce9f0998481831bd82410d9038ed4d647a619c8;hb=b2f9a8d7bce642ff4011bc6d49e02bb0569fbb11;hp=eb993c27dd01d8fbcd1d73bbb4a76b1ca5fd800d;hpb=faae05fdc5fa52694cb79541c2de30f53308d555;p=jalview.git diff --git a/src/jalview/ws/params/simple/Option.java b/src/jalview/ws/params/simple/Option.java index eb993c2..0ce9f09 100644 --- a/src/jalview/ws/params/simple/Option.java +++ b/src/jalview/ws/params/simple/Option.java @@ -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 . + * 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 possibleVals = new ArrayList(); - - String name, value, defvalue,description; - ArrayList possibleVals=new ArrayList(); 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)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) 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 possibleVals, URL fdetails) + String defValue, String value, Collection 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(); 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 +}