KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > wings > event > SInternalFrameAdapter


1 /*
2  * $Id: SInternalFrameAdapter.java,v 1.3 2004/12/01 07:54:07 hengels Exp $
3  * Copyright 2000,2005 wingS development team.
4  *
5  * This file is part of wingS (http://www.j-wings.org).
6  *
7  * wingS is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU Lesser General Public License
9  * as published by the Free Software Foundation; either version 2.1
10  * of the License, or (at your option) any later version.
11  *
12  * Please see COPYING for the complete licence.
13  */

14 package org.wings.event;
15
16 /**
17  * @author Holger Engels
18  * @version $Revision: 1.3 $
19  * @see SInternalFrameEvent
20  * @see SInternalFrameListener
21  */

22 public abstract class SInternalFrameAdapter
23         implements SInternalFrameListener {
24     /**
25      * Invoked when an internal frame has been opened.
26      */

27     public void internalFrameOpened(SInternalFrameEvent e) {}
28
29     /**
30      * Invoked when an internal frame has been closed.
31      */

32     public void internalFrameClosed(SInternalFrameEvent e) {}
33
34     /**
35      * Invoked when an internal frame is iconified.
36      */

37     public void internalFrameIconified(SInternalFrameEvent e) {}
38
39     /**
40      * Invoked when an internal frame is de-iconified.
41      */

42     public void internalFrameDeiconified(SInternalFrameEvent e) {}
43
44     /**
45      * Invoked when an internal frame is maximized.
46      */

47     public void internalFrameMaximized(SInternalFrameEvent e) {}
48
49     /**
50      * Invoked when an internal frame is unmaximized.
51      */

52     public void internalFrameUnmaximized(SInternalFrameEvent e) {}
53 }
54
55
56
Popular Tags