X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fjws2%2FParameterUtils.java;h=c7fad055c31b2f1ce9d4bda78355a5deb5a8d297;hb=f4766a7bbcfae845fc95923b01fa14ff83d589ff;hp=e2bfbbd6682e7b923edd7df44dd980e92b376d95;hpb=47168f025aefdaa044802bd5f8f510ffe43a4808;p=jalview.git diff --git a/src/jalview/ws/jws2/ParameterUtils.java b/src/jalview/ws/jws2/ParameterUtils.java index e2bfbbd..c7fad05 100644 --- a/src/jalview/ws/jws2/ParameterUtils.java +++ b/src/jalview/ws/jws2/ParameterUtils.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) - * Copyright (C) 2014 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,12 +20,17 @@ */ package jalview.ws.jws2; -import java.net.MalformedURLException; +import jalview.util.MessageManager; + import java.util.ArrayList; import java.util.HashSet; import java.util.List; -import compbio.metadata.*; +import compbio.metadata.Option; +import compbio.metadata.Parameter; +import compbio.metadata.RunnerConfig; +import compbio.metadata.ValueConstrain; +import compbio.metadata.WrongParameterException; public class ParameterUtils { @@ -88,12 +93,13 @@ public class ParameterUtils { try { - o.setDefaultValue(isParameter(param, pseparator) ? getParamValue( - param, pseparator) : param); + o.setDefaultValue(isParameter(param, pseparator) + ? getParamValue(param, pseparator) + : param); } catch (WrongParameterException e) { - System.out.println("Problem setting value for the parameter: " - + param); + System.out.println( + "Problem setting value for the parameter: " + param); e.printStackTrace(); } } @@ -144,8 +150,7 @@ public class ParameterUtils } else { - copy.addOptionNames(names.toArray(new String[] - {})); + copy.addOptionNames(names.toArray(new String[] {})); } } try @@ -181,8 +186,8 @@ public class ParameterUtils } catch (Exception e) { e.printStackTrace(); - throw new Error( - "Implementation error: could not copy ValueConstrain!"); + throw new Error(MessageManager.getString( + "error.implementation_error_couldnt_copy_value_constraint")); } } @@ -197,8 +202,7 @@ public class ParameterUtils List pv = parameter.getPossibleValues(); if (pv != null) { - copy.addPossibleValues(pv.toArray(new String[] - {})); + copy.addPossibleValues(pv.toArray(new String[] {})); } setOptionFrom(copy, parameter); return copy;