X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FRestInputParamEditDialog.java;fp=src%2Fjalview%2Fgui%2FRestInputParamEditDialog.java;h=8ae5408bb86e32b5f4ba78a62d44e43f659198c3;hb=daf64249356f9a156423bd56ab0336d9da2e5325;hp=19a9b51bab4d79ea3148e2efb34f50d918afc662;hpb=4f9c22055c3cdbfc9c4375dcb74755a89ec32b62;p=jalview.git diff --git a/src/jalview/gui/RestInputParamEditDialog.java b/src/jalview/gui/RestInputParamEditDialog.java index 19a9b51..8ae5408 100644 --- a/src/jalview/gui/RestInputParamEditDialog.java +++ b/src/jalview/gui/RestInputParamEditDialog.java @@ -53,8 +53,8 @@ public class RestInputParamEditDialog extends GRestInputParamEditDialog .newInstance()); } catch (Throwable x) { - System.err - .println("Unexpected exception when instantiating rest input type."); + System.err.println( + "Unexpected exception when instantiating rest input type."); x.printStackTrace(); } return null; @@ -103,8 +103,9 @@ public class RestInputParamEditDialog extends GRestInputParamEditDialog { okcancel.add(frame.cancel); okcancel.add(frame.ok); - frame.initDialogFrame(dpane, true, true, "Edit parameter for service " - + currentservice.getName(), 600, 800); + frame.initDialogFrame(dpane, true, true, + "Edit parameter for service " + currentservice.getName(), 600, + 800); initTypeLists(); reply = JvOptionPane.CANCEL_OPTION; @@ -159,14 +160,14 @@ public class RestInputParamEditDialog extends GRestInputParamEditDialog newType.token = tok.getText().trim(); try { - newType.configureFromArgumentI(opanps.get( - newType.getURLtokenPrefix()).getCurrentSettings()); + newType.configureFromArgumentI(opanps + .get(newType.getURLtokenPrefix()).getCurrentSettings()); current = newType; updated = true; } catch (InvalidArgumentException ex) { - System.err - .println("IMPLEMENTATION ERROR: Invalid argument for type : " + System.err.println( + "IMPLEMENTATION ERROR: Invalid argument for type : " + typeList.getSelectedValue() + "\n"); ex.printStackTrace(); } @@ -186,7 +187,8 @@ public class RestInputParamEditDialog extends GRestInputParamEditDialog try { JPanel inopts = new JPanel(new MigLayout()); - ArrayList opts = new ArrayList(), prms = new ArrayList(); + ArrayList opts = new ArrayList(), + prms = new ArrayList(); jtype = (InputType) (type.getConstructor().newInstance()); typeclass.put(jtype.getURLtokenPrefix(), type); // and populate parameters from this type @@ -213,8 +215,8 @@ public class RestInputParamEditDialog extends GRestInputParamEditDialog types.add(jtype.getURLtokenPrefix()); } catch (Throwable x) { - System.err - .println("Unexpected exception when instantiating rest input type."); + System.err.println( + "Unexpected exception when instantiating rest input type."); x.printStackTrace(); } }