X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Frest%2FInputType.java;h=a96b6d9ba4fda00e9ba4240869905f6931cf44e1;hb=9d2408483e451285fd555c3cd6e0273977acbaa7;hp=df340b053abc233d3f199a8230628c5d4e259b7a;hpb=17e77c3f2949a0729322b4a8d907f3f34b6a9914;p=jalview.git diff --git a/src/jalview/ws/rest/InputType.java b/src/jalview/ws/rest/InputType.java index df340b0..a96b6d9 100644 --- a/src/jalview/ws/rest/InputType.java +++ b/src/jalview/ws/rest/InputType.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9) - * Copyright (C) 2015 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -20,6 +20,8 @@ */ package jalview.ws.rest; +import java.util.Locale; + import jalview.ws.params.ArgumentI; import jalview.ws.params.InvalidArgumentException; import jalview.ws.params.OptionI; @@ -130,13 +132,13 @@ public abstract class InputType { if (type == null) { - return new StringBody(utf8.encode(content).asCharBuffer() - .toString()); + return new StringBody( + utf8.encode(content).asCharBuffer().toString()); } else { - return new StringBody(utf8.encode(content).asCharBuffer() - .toString(), type, utf8); + return new StringBody( + utf8.encode(content).asCharBuffer().toString(), type, utf8); } } catch (Exception ex) { @@ -232,7 +234,7 @@ public abstract class InputType { valid = false; warnings.append("Invalid value for parameter " - + mtch.group(1).toLowerCase() + " '" + mtch.group(2) + + mtch.group(1).toLowerCase(Locale.ROOT) + " '" + mtch.group(2) + "' (expected an integer)\n"); } @@ -307,9 +309,10 @@ public abstract class InputType { // TODO: revise architecture - this is counter intuitive - options with // different values to their names are actually parameters - rg = (arg.getValue().length() > 0) ? (arg.getValue().equals( - arg.getName()) ? arg.getName() : arg.getName() + "='" - + arg.getValue() + "'") : arg.getName(); + rg = (arg.getValue().length() > 0) + ? (arg.getValue().equals(arg.getName()) ? arg.getName() + : arg.getName() + "='" + arg.getValue() + "'") + : arg.getName(); } if (rg.length() > 0) { @@ -317,7 +320,8 @@ public abstract class InputType } } StringBuffer warnings; - if (!configureFromURLtokenString(urltoks, warnings = new StringBuffer())) + if (!configureFromURLtokenString(urltoks, + warnings = new StringBuffer())) { throw new InvalidArgumentException(warnings.toString()); } @@ -326,8 +330,8 @@ public abstract class InputType protected OptionI createMolTypeOption(String name, String descr, boolean req, molType curType, molType defType) { - return new Option(name, descr, req, defType == null ? "" - : defType.toString(), + return new Option(name, descr, req, + defType == null ? "" : defType.toString(), curType == null ? "" : curType.toString(), molType.toStringValues(), null); }