X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FProgressBar.java;h=ea341e3ed9cd341989be07aae02cba69b346ca20;hb=8f5e471f79fdd55b7dc397f942232cb036c14017;hp=c7db5350036e2ed59b30484a29d034a3ef32e513;hpb=fddf3084802b37e5cee17829e32692a4aac3e60d;p=jalview.git diff --git a/src/jalview/gui/ProgressBar.java b/src/jalview/gui/ProgressBar.java index c7db535..ea341e3 100644 --- a/src/jalview/gui/ProgressBar.java +++ b/src/jalview/gui/ProgressBar.java @@ -1,3 +1,23 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ 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.gui; import jalview.util.MessageManager; @@ -102,7 +122,7 @@ public class ProgressBar implements IProgressIndicator public void setProgressBar(String message, long id) { Long longId = Long.valueOf(id); - + JPanel progressPanel = progressBars.get(longId); if (progressPanel != null) { @@ -126,15 +146,15 @@ public class ProgressBar implements IProgressIndicator * No progress bar for this id - add one now */ progressPanel = new JPanel(new BorderLayout(10, 5)); - + JProgressBar progressBar = new JProgressBar(); progressBar.setIndeterminate(true); - + progressPanel.add(new JLabel(message), BorderLayout.WEST); progressPanel.add(progressBar, BorderLayout.CENTER); - + addRow(progressPanel); - + progressBars.put(longId, progressPanel); } @@ -199,8 +219,8 @@ public class ProgressBar implements IProgressIndicator final JPanel progressPanel = progressBars.get(longId); if (progressPanel == null) { - System.err - .println("call setProgressBar before registering the progress bar's handler."); + System.err.println( + "call setProgressBar before registering the progress bar's handler."); return; } @@ -222,9 +242,10 @@ public class ProgressBar implements IProgressIndicator public void actionPerformed(ActionEvent e) { handler.cancelActivity(id); - us.setProgressBar(MessageManager.formatMessage( - "label.cancelled_params", new Object[] - { ((JLabel) progressPanel.getComponent(0)).getText() }), id); + us.setProgressBar(MessageManager + .formatMessage("label.cancelled_params", new Object[] + { ((JLabel) progressPanel.getComponent(0)).getText() }), + id); } }); progressPanel.add(cancel, BorderLayout.EAST);