blob: 3efe1ce31d346f42691d2e1a76362ecea45a6625 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2008 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ltk.internal.ui.refactoring;
import org.eclipse.jface.wizard.IWizardPage;
import org.eclipse.ltk.core.refactoring.RefactoringStatus;
/**
* Interface for a refactoring error wizard page.
*
* @since 3.2
*/
public interface IErrorWizardPage extends IWizardPage {
/** The page's name */
String PAGE_NAME= "ErrorPage"; //$NON-NLS-1$
/**
* Returns the page's refactoring status.
*
* @return the refactoring status
*/
RefactoringStatus getStatus();
/**
* Sets the page's refactoring status to the given value.
*
* @param status
* the refactoring status
*/
void setStatus(RefactoringStatus status);
}