KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jface > dialogs > IPageChangedListener


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  *******************************************************************************/

11 package org.eclipse.jface.dialogs;
12
13 /**
14  * A listener which is notified when the current page of the multi-page dialog
15  * is changed.
16  *
17  * @see IPageChangeProvider
18  * @see PageChangedEvent
19  *
20  * @since 3.1
21  */

22 public interface IPageChangedListener {
23     /**
24      * Notifies that the selected page has changed.
25      *
26      * @param event
27      * event object describing the change
28      */

29     public void pageChanged(PageChangedEvent event);
30 }
31
Popular Tags