blob: 1e743379c952244f73ab161c4969818d76b12463 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.ui.about;
import org.eclipse.swt.widgets.Button;
/**
* Interface for a container that hosts one or more installation pages (
* {@link InstallationPage}).
*
* @noimplement This interface is not intended to be implemented by clients.
*
* @since 1.4
*/
public interface IInstallationPageContainer {
/**
* Register a button as belonging to a particular page in the container. The
* container will manage the placement and visibility of the page's buttons.
*
* @param page
* the page that created the button
* @param button
* the button to be managed
*
*/
public void registerPageButton(InstallationPage page, Button button);
/**
* Closes any modal containers that were used to launch this installation
* page. This method should be used when a page is launching a long-running
* task (such as a background job) that requires progress indication, in
* order to allow platform progress indication to behave as expected.
*/
public void closeModalContainers();
}