X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FOptsAndParamsPage.java;h=847c26a4dc9c648db858ad06ce6ee61f05690b44;hb=7ab5d6b0ba5fec1ea4a4239e79c476d841622485;hp=1dd848bad20e955db4e8a3ae0b22a5d324b0b192;hpb=be82f3ed45d1f5300232ce18ea3747bd09727211;p=jalview.git diff --git a/src/jalview/gui/OptsAndParamsPage.java b/src/jalview/gui/OptsAndParamsPage.java index 1dd848b..847c26a 100644 --- a/src/jalview/gui/OptsAndParamsPage.java +++ b/src/jalview/gui/OptsAndParamsPage.java @@ -1,19 +1,21 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1) + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) * 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. + * 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 . + * 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.gui; @@ -111,7 +113,7 @@ public class OptsAndParamsPage enabled.setToolTipText("" + JvSwingUtils - .wrapTooltip(((desc == null || desc.trim().length()==0) ? "see further details by right-clicking" + .wrapTooltip(((desc == null || desc.trim().length() == 0) ? "see further details by right-clicking" : desc) + "
") + ""); @@ -119,7 +121,7 @@ public class OptsAndParamsPage } else { - if (desc != null && desc.trim().length()>0) + if (desc != null && desc.trim().length() > 0) { enabled.setToolTipText("" + JvSwingUtils.wrapTooltip(opt.getDescription()) @@ -237,11 +239,11 @@ public class OptsAndParamsPage } - public void resetToDefault(boolean setDefaultParams) { enabled.setSelected(false); - if (option.isRequired() || (setDefaultParams && option.getValue()!=null)) + if (option.isRequired() + || (setDefaultParams && option.getValue() != null)) { // Apply default value selectOption(option, option.getValue()); @@ -261,7 +263,7 @@ public class OptsAndParamsPage initVal = (initEnabled) ? (String) val.getSelectedItem() : null; } } - + } public class ParamBox extends JPanel implements ChangeListener, @@ -679,7 +681,7 @@ public class OptsAndParamsPage { slider.getModel().setRangeProperties(iVal, 1, validator.getMin().intValue(), - validator.getMax().intValue()+1, true); + validator.getMax().intValue() + 1, true); } else { @@ -721,7 +723,8 @@ public class OptsAndParamsPage { slider.getModel().setRangeProperties((int) (fVal * 1000f), 1, (int) (validator.getMin().floatValue() * 1000f), - 1+(int) (validator.getMax().floatValue() * 1000f), true); + 1 + (int) (validator.getMax().floatValue() * 1000f), + true); } else { @@ -772,7 +775,9 @@ public class OptsAndParamsPage { JPopupMenu mnu = new JPopupMenu(); - JMenuItem mitem = new JMenuItem(MessageManager.formatMessage("label.view_params", new String[]{finfo})); + JMenuItem mitem = new JMenuItem(MessageManager.formatMessage( + "label.view_params", new String[] + { finfo })); mitem.addActionListener(new ActionListener() {