01: /*--------------------------------------------------------------------------*
02: | Copyright (C) 2006 Christopher Kohlhaas |
03: | |
04: | This program is free software; you can redistribute it and/or modify |
05: | it under the terms of the GNU General Public License as published by the |
06: | Free Software Foundation. A copy of the license has been included with |
07: | these distribution in the COPYING file, if not go to www.fsf.org |
08: | |
09: | As a special exception, you are granted the permissions to link this |
10: | program with every library, which license fulfills the Open Source |
11: | Definition as published by the Open Source Initiative (OSI). |
12: *--------------------------------------------------------------------------*/
13: package org.rapla.gui.toolkit;
14:
15: /** All classes implementing this Interface must call
16: FrameControllerList.addFrameController(this) on initialization
17: FrameControllerList.removeFrameController(this) on close
18: This Class is used for automated close of all Frames on Logout.
19: */
20: public interface FrameController {
21: void close(); // must call FrameControllerList.remove(this);
22: }
|