comparison dwtx/jface/dialogs/IPageChangedListener.d @ 20:d1f4edab3f34

Page Change
author Frank Benoit <benoit@tionex.de>
date Thu, 03 Apr 2008 00:33:43 +0200
parents
children
comparison
equal deleted inserted replaced
19:2b36428a5ce4 20:d1f4edab3f34
1 /*******************************************************************************
2 * Copyright (c) 2005 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 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13 module dwtx.jface.dialogs.IPageChangedListener;
14
15 import dwtx.jface.dialogs.PageChangedEvent;
16
17 import dwt.dwthelper.utils;
18
19 /**
20 * A listener which is notified when the current page of the multi-page dialog
21 * is changed.
22 *
23 * @see IPageChangeProvider
24 * @see PageChangedEvent
25 *
26 * @since 3.1
27 */
28 public interface IPageChangedListener {
29 /**
30 * Notifies that the selected page has changed.
31 *
32 * @param event
33 * event object describing the change
34 */
35 public void pageChanged(PageChangedEvent event);
36 }