blob: c00a1f88d2ff792ea61702c74b29e7d50162c262 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.refactoring;
import org.eclipse.jface.wizard.IWizardPage;
import org.eclipse.jdt.internal.corext.refactoring.base.IChange;
public interface IPreviewWizardPage extends IWizardPage {
/** The page's name */
public static final String PAGE_NAME= "PreviewPage"; //$NON-NLS-1$
/**
* Sets that change for which the page is supposed to display a preview.
*
* @param change the new change.
*/
public void setChange(IChange change);
}