X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FWebserviceInfo.java;h=2afec5509bff319260af3a929eff2e63dea26239;hb=5c33de4092732a61c2bc4ab3cb76b773752ad37a;hp=ea2bacbd563a979314d6efb9fa11a7a0cef17c14;hpb=21c29b20790ac555b2e2a124a034f6c6b4486270;p=jalview.git diff --git a/src/jalview/gui/WebserviceInfo.java b/src/jalview/gui/WebserviceInfo.java index ea2bacb..2afec55 100644 --- a/src/jalview/gui/WebserviceInfo.java +++ b/src/jalview/gui/WebserviceInfo.java @@ -1,19 +1,22 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8) - * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle + * 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; @@ -767,32 +770,52 @@ public class WebserviceInfo extends GWebserviceInfo implements switch (currentStatus) { case STATE_QUEUING: - g.drawString(title.concat(" - ").concat(MessageManager.getString("label.state_queueing")), 60, 30); + g.drawString( + title.concat(" - ").concat( + MessageManager.getString("label.state_queueing")), + 60, 30); break; case STATE_RUNNING: - g.drawString(title.concat(" - ").concat(MessageManager.getString("label.state_running")), 60, 30); + g.drawString( + title.concat(" - ").concat( + MessageManager.getString("label.state_running")), + 60, 30); break; case STATE_STOPPED_OK: - g.drawString(title.concat(" - ").concat(MessageManager.getString("label.state_completed")), 60, 30); + g.drawString( + title.concat(" - ").concat( + MessageManager.getString("label.state_completed")), + 60, 30); break; case STATE_CANCELLED_OK: - g.drawString(title.concat(" - ").concat(MessageManager.getString("label.state_job_cancelled")), 60, 30); + g.drawString( + title.concat(" - ").concat( + MessageManager + .getString("label.state_job_cancelled")), + 60, 30); break; case STATE_STOPPED_ERROR: - g.drawString(title.concat(" - ").concat(MessageManager.getString("label.state_job_error")), 60, 30); + g.drawString( + title.concat(" - ").concat( + MessageManager.getString("label.state_job_error")), + 60, 30); break; case STATE_STOPPED_SERVERERROR: - g.drawString(title.concat(" - ").concat(MessageManager.getString("label.server_error_try_later")), 60, 30); + g.drawString( + title.concat(" - ").concat( + MessageManager + .getString("label.server_error_try_later")), + 60, 30); break; } @@ -896,7 +919,8 @@ public class WebserviceInfo extends GWebserviceInfo implements final JPanel progressPanel = (JPanel) progressBars.get(new Long(id)); if (handler.canCancel()) { - JButton cancel = new JButton(MessageManager.getString("action.cancel")); + JButton cancel = new JButton( + MessageManager.getString("action.cancel")); final IProgressIndicator us = this; cancel.addActionListener(new ActionListener() {