X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FAPQHandlers.java;h=e5e328f8f6209248e8afc37b09f1d16470c18ebf;hb=57738a1f3c19b1c3a00bd3ac5108f8cd0af32f99;hp=c5a1b6688c4d4da2b1cff4b03a3db287717207de;hpb=17e4ea278bc9a5fb280db1252ce78b7a295215f5;p=jalview.git diff --git a/src/jalview/gui/APQHandlers.java b/src/jalview/gui/APQHandlers.java index c5a1b66..e5e328f 100644 --- a/src/jalview/gui/APQHandlers.java +++ b/src/jalview/gui/APQHandlers.java @@ -1,5 +1,26 @@ +/* + * 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.bin.Cache; import jalview.util.MessageManager; import jalview.util.Platform; @@ -19,10 +40,12 @@ public class APQHandlers { private static boolean setAPQHandlers = false; - public APQHandlers() { + public APQHandlers() + { } - protected static boolean setAPQHandlers(jalview.gui.Desktop jalviewDesktop) + protected static boolean setAPQHandlers( + jalview.gui.Desktop jalviewDesktop) { // flagging this test to avoid unnecessary reflection if (!setAPQHandlers) @@ -61,16 +84,14 @@ public class APQHandlers { PreferencesHandler.class }) != null) { - hdesktop.setPreferencesHandler( - new PreferencesHandler() + hdesktop.setPreferencesHandler(new PreferencesHandler() { - @Override - public void handlePreferences( - PreferencesEvent e) - { - jalviewDesktop.preferences_actionPerformed(null); - } - }); + @Override + public void handlePreferences(PreferencesEvent e) + { + jalviewDesktop.preferences_actionPerformed(null); + } + }); } @@ -82,13 +103,11 @@ public class APQHandlers hdesktop.setQuitHandler(new QuitHandler() { @Override - public void handleQuitRequestWith( - QuitEvent e, QuitResponse r) + public void handleQuitRequestWith(QuitEvent e, + QuitResponse r) { - boolean confirmQuit = jalview.bin.Cache - .getDefault( - jalview.gui.Desktop.CONFIRM_KEYBOARD_QUIT, - true); + boolean confirmQuit = Cache.getDefault( + jalview.gui.Desktop.CONFIRM_KEYBOARD_QUIT, true); int n; if (confirmQuit) { @@ -117,8 +136,7 @@ public class APQHandlers } } }); - hdesktop.setQuitStrategy( - QuitStrategy.CLOSE_ALL_WINDOWS); + hdesktop.setQuitStrategy(QuitStrategy.CLOSE_ALL_WINDOWS); } } @@ -144,7 +162,7 @@ public class APQHandlers } } - + return setAPQHandlers; }