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 * Port to the D programming language: 11 * John Reimer <terminal.node@gmail.com> 12 *******************************************************************************/ 13 module org.eclipse.swt.browser.VisibilityWindowAdapter; 14 15 import java.lang.all; 16 17 import org.eclipse.swt.browser.WindowEvent; 18 import org.eclipse.swt.browser.VisibilityWindowListener; 19 20 /** 21 * This adapter class provides default implementations for the 22 * methods described by the {@link VisibilityWindowListener} interface. 23 * <p> 24 * Classes that wish to deal with {@link WindowEvent}'s can 25 * extend this class and override only the methods which they are 26 * interested in. 27 * </p> 28 * 29 * @since 3.0 30 */ 31 public abstract class VisibilityWindowAdapter : VisibilityWindowListener { 32 33 public void hide(WindowEvent event) { 34 } 35 36 public void show(WindowEvent event) { 37 } 38 }