01: /*
02: * Copyright 2000,2005 wingS development team.
03: *
04: * This file is part of wingS (http://wingsframework.org).
05: *
06: * wingS is free software; you can redistribute it and/or modify
07: * it under the terms of the GNU Lesser General Public License
08: * as published by the Free Software Foundation; either version 2.1
09: * of the License, or (at your option) any later version.
10: *
11: * Please see COPYING for the complete licence.
12: */
13: package org.wings.event;
14:
15: /**
16: * Empty default implementation of {@link SInternalFrameListener}.
17: *
18: * @author Holger Engels
19: * @see SInternalFrameEvent
20: * @see SInternalFrameListener
21: */
22: public abstract class SInternalFrameAdapter implements
23: SInternalFrameListener {
24: /**
25: * Invoked when an internal frame has been opened.
26: */
27: public void internalFrameOpened(SInternalFrameEvent e) {
28: }
29:
30: /**
31: * Invoked when an internal frame has been closed.
32: */
33: public void internalFrameClosed(SInternalFrameEvent e) {
34: }
35:
36: /**
37: * Invoked when an internal frame is iconified.
38: */
39: public void internalFrameIconified(SInternalFrameEvent e) {
40: }
41:
42: /**
43: * Invoked when an internal frame is de-iconified.
44: */
45: public void internalFrameDeiconified(SInternalFrameEvent e) {
46: }
47:
48: /**
49: * Invoked when an internal frame is maximized.
50: */
51: public void internalFrameMaximized(SInternalFrameEvent e) {
52: }
53:
54: /**
55: * Invoked when an internal frame is unmaximized.
56: */
57: public void internalFrameUnmaximized(SInternalFrameEvent e) {
58: }
59: }
|