KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * $Id: SInternalFrameListener.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 import java.util.EventListener JavaDoc;
17
18 /**
19  * The listener interface for receiving internal frame events.
20  *
21  * @author Holger Engels
22  * @version $Revision: 1.3 $
23  * @see javax.swing.event.InternalFrameListener
24  */

25 public interface SInternalFrameListener extends EventListener JavaDoc {
26
27     /**
28      * Invoked when a internal frame has been opened.
29      *
30      * @see org.wings.SInternalFrame#show
31      */

32     public void internalFrameOpened(SInternalFrameEvent e);
33
34     /**
35      * Invoked when an internal frame has been closed.
36      *
37      * @see org.wings.SInternalFrame#setClosed
38      */

39     public void internalFrameClosed(SInternalFrameEvent e);
40
41     /**
42      * Invoked when an internal frame is iconified.
43      *
44      * @see org.wings.SInternalFrame#setIcon
45      */

46     public void internalFrameIconified(SInternalFrameEvent e);
47
48     /**
49      * Invoked when an internal frame is de-iconified.
50      *
51      * @see org.wings.SInternalFrame#setIcon
52      */

53     public void internalFrameDeiconified(SInternalFrameEvent e);
54
55     /**
56      * Invoked when an internal frame is maximized.
57      *
58      * @see org.wings.SInternalFrame#setMaximized
59      */

60     public void internalFrameMaximized(SInternalFrameEvent e);
61
62     /**
63      * Invoked when an internal frame is un-maximized.
64      *
65      * @see org.wings.SInternalFrame#setMaximized
66      */

67     public void internalFrameUnmaximized(SInternalFrameEvent e);
68 }
69
70
71
Popular Tags