KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > browser > VisibilityWindowAdapter


1 /*******************************************************************************
2  * Copyright (c) 2003, 2004 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.swt.browser;
12
13 /**
14  * This adapter class provides default implementations for the
15  * methods described by the {@link VisibilityWindowListener} interface.
16  * <p>
17  * Classes that wish to deal with {@link WindowEvent}'s can
18  * extend this class and override only the methods which they are
19  * interested in.
20  * </p>
21  *
22  * @since 3.0
23  */

24 public abstract class VisibilityWindowAdapter implements VisibilityWindowListener {
25
26 public void hide(WindowEvent event) {
27 }
28  
29 public void show(WindowEvent event) {
30 }
31 }
32
Popular Tags