comparison dwt/browser/VisibilityWindowAdapter.d @ 278:93409d9838c5

Commit more browser/xpcom updates, including still uncoverted source.
author John Reimer<terminal.node@gmail.com>
date Thu, 31 Jul 2008 19:17:51 -0700
parents
children bfe1c57259e3
comparison
equal deleted inserted replaced
277:687f261028b8 278:93409d9838c5
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 module dwt.browser.VisibilityWindowAdapter;
12
13 import dwt.dwthelper.utils;
14
15 /**
16 * This adapter class provides default implementations for the
17 * methods described by the {@link VisibilityWindowListener} interface.
18 * <p>
19 * Classes that wish to deal with {@link WindowEvent}'s can
20 * extend this class and override only the methods which they are
21 * interested in.
22 * </p>
23 *
24 * @since 3.0
25 */
26 public abstract class VisibilityWindowAdapter implements VisibilityWindowListener {
27
28 public void hide(WindowEvent event) {
29 }
30
31 public void show(WindowEvent event) {
32 }
33 }