comparison dwt/browser/VisibilityWindowAdapter.d @ 302:bfe1c57259e3

More browser code ported
author John Reimer<terminal.node@gmail.com>
date Tue, 12 Aug 2008 21:11:17 -0700
parents 93409d9838c5
children 8198e6052012
comparison
equal deleted inserted replaced
301:d1474e6bb509 302:bfe1c57259e3
5 * which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html 6 * http://www.eclipse.org/legal/epl-v10.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * IBM Corporation - initial API and implementation 9 * IBM Corporation - initial API and implementation
10 * Port to the D programming language:
11 * John Reimer <terminal.node@gmail.com>
10 *******************************************************************************/ 12 *******************************************************************************/
11 module dwt.browser.VisibilityWindowAdapter; 13 module dwt.browser.VisibilityWindowAdapter;
12 14
13 import dwt.dwthelper.utils; 15 import dwt.browser.WindowEvent;
16 //import dwt.dwthelper.utils;
14 17
15 /** 18 /**
16 * This adapter class provides default implementations for the 19 * This adapter class provides default implementations for the
17 * methods described by the {@link VisibilityWindowListener} interface. 20 * methods described by the {@link VisibilityWindowListener} interface.
18 * <p> 21 * <p>
21 * interested in. 24 * interested in.
22 * </p> 25 * </p>
23 * 26 *
24 * @since 3.0 27 * @since 3.0
25 */ 28 */
26 public abstract class VisibilityWindowAdapter implements VisibilityWindowListener { 29 public abstract class VisibilityWindowAdapter : VisibilityWindowListener {
27 30
28 public void hide(WindowEvent event) { 31 public void hide(WindowEvent event) {
29 } 32 }
30 33
31 public void show(WindowEvent event) { 34 public void show(WindowEvent event) {