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.ltk.internal.ui.refactoring; 12 13 import org.eclipse.ltk.core.refactoring.RefactoringStatus; 14 15 import org.eclipse.jface.wizard.IWizardPage; 16 17 /** 18 * Interface for a refactoring error wizard page. 19 * 20 * @since 3.2 21 */ 22 public interface IErrorWizardPage extends IWizardPage { 23 24 /** The page's name */ 25 public static final String PAGE_NAME= "ErrorPage"; //$NON-NLS-1$ 26 27 /** 28 * Returns the page's refactoring status. 29 * 30 * @return the refactoring status 31 */ 32 public RefactoringStatus getStatus(); 33 34 /** 35 * Sets the page's refactoring status to the given value. 36 * 37 * @param status 38 * the refactoring status 39 */ 40 public void setStatus(RefactoringStatus status); 41 }