Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.ui/refactor/org/eclipse/cdt/internal/ui/refactoring/UserInputWizardPage.java')
-rw-r--r--core/org.eclipse.cdt.ui/refactor/org/eclipse/cdt/internal/ui/refactoring/UserInputWizardPage.java153
1 files changed, 0 insertions, 153 deletions
diff --git a/core/org.eclipse.cdt.ui/refactor/org/eclipse/cdt/internal/ui/refactoring/UserInputWizardPage.java b/core/org.eclipse.cdt.ui/refactor/org/eclipse/cdt/internal/ui/refactoring/UserInputWizardPage.java
deleted file mode 100644
index e4eafbd59f4..00000000000
--- a/core/org.eclipse.cdt.ui/refactor/org/eclipse/cdt/internal/ui/refactoring/UserInputWizardPage.java
+++ /dev/null
@@ -1,153 +0,0 @@
-/**********************************************************************
- * Copyright (c) 2004 Rational Software Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v0.5
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v05.html
- *
- * Contributors:
- * IBM Rational Software - Initial API and implementation
-***********************************************************************/
-
-package org.eclipse.cdt.internal.ui.refactoring;
-
-import org.eclipse.cdt.internal.corext.refactoring.base.Refactoring;
-import org.eclipse.cdt.internal.corext.refactoring.base.RefactoringStatus;
-import org.eclipse.cdt.internal.ui.CPluginImages;
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.jface.wizard.IWizardPage;
-
-/**
- * An abstract wizard page that can be used to implement user input pages for
- * refactoring wizards. Usually user input pages are pages shown at the beginning
- * of a wizard. As soon as the "last" user input page is left a corresponding
- * precondition check is executed.
- */
-public abstract class UserInputWizardPage extends RefactoringWizardPage {
-
- private final boolean fIsLastUserPage;
-
- /**
- * Creates a new user input page.
- * @param name the page's name.
- * @param isLastUserPage <code>true</code> if this page is the wizard's last
- * user input page. Otherwise <code>false</code>.
- */
- public UserInputWizardPage(String name, boolean isLastUserPage) {
- super(name);
- fIsLastUserPage= isLastUserPage;
- }
-
- /**
- * Sets the page's complete status depending on the given <tt>
- * ReactoringStatus</tt>.
- *
- * @param status the <tt>RefactoringStatus</tt>
- */
- public void setPageComplete(RefactoringStatus status) {
- getRefactoringWizard().setStatus(status);
-
- int severity= status.getSeverity();
- if (severity == RefactoringStatus.FATAL){
- setPageComplete(false);
- setErrorMessage(status.getFirstMessage(severity));
- setImageDescriptor(CPluginImages.DESC_OBJS_DEFAULT_CHANGE);
- } else {
- setPageComplete(true);
- setErrorMessage(null);
- //setErrorMessage(RefactoringMessages.getString("RenameInputWizardPage.no_undo")); //$NON-NLS-1$
- if (severity == RefactoringStatus.OK)
- setMessage(null, NONE);
- else {
- setMessage(status.getFirstMessage(severity), getCorrespondingIStatusSeverity(severity));
- setImageDescriptor(CPluginImages.DESC_OBJS_DEFAULT_CHANGE);
- }
- }
- }
-
- /* (non-Javadoc)
- * Method declared in WizardPage
- */
- public void setVisible(boolean visible) {
- if (visible)
- getRefactoringWizard().setChange(null);
- super.setVisible(visible);
- }
-
- /* (non-JavaDoc)
- * Method declared in IWizardPage.
- */
- public IWizardPage getNextPage() {
- if (fIsLastUserPage)
- return getRefactoringWizard().computeUserInputSuccessorPage(this);
- else
- return super.getNextPage();
- }
-
- /* (non-JavaDoc)
- * Method declared in IWizardPage.
- */
- public boolean canFlipToNextPage() {
- if (fIsLastUserPage) {
- // we can't call getNextPage to determine if flipping is allowed since computing
- // the next page is quite expensive (checking preconditions and creating a
- // change). So we say yes if the page is complete.
- return isPageComplete();
- } else {
- return super.canFlipToNextPage();
- }
- }
-
- /* (non-JavaDoc)
- * Method defined in RefactoringWizardPage
- */
- protected boolean performFinish() {
- RefactoringWizard wizard= getRefactoringWizard();
- int threshold= RefactoringPreferences.getCheckPassedSeverity();
- RefactoringStatus activationStatus= wizard.getActivationStatus();
- RefactoringStatus inputStatus= null;
- RefactoringStatus status= new RefactoringStatus();
- Refactoring refactoring= getRefactoring();
- boolean result= false;
-
- if (activationStatus != null && activationStatus.getSeverity() > threshold) {
- inputStatus= wizard.checkInput();
- } else {
- CreateChangeOperation create= new CreateChangeOperation(refactoring, CreateChangeOperation.CHECK_INPUT);
- create.setCheckPassedSeverity(threshold);
-
- PerformChangeOperation perform= new PerformChangeOperation(create);
- perform.setCheckPassedSeverity(threshold);
-
- result= wizard.performFinish(perform);
- wizard.setChange(create.getChange());
- if (!result)
- return false;
- inputStatus= create.getStatus();
- }
-
- status.merge(activationStatus);
- status.merge(inputStatus);
-
- if (status.getSeverity() > threshold) {
- wizard.setStatus(status);
- IWizardPage nextPage= wizard.getPage(ErrorWizardPage.PAGE_NAME);
- wizard.getContainer().showPage(nextPage);
- return false;
- }
-
- return result;
- }
-
- private static int getCorrespondingIStatusSeverity(int severity) {
- if (severity == RefactoringStatus.FATAL)
- return IStatus.ERROR;
- if (severity == RefactoringStatus.ERROR)
- return IStatus.WARNING;
- if (severity == RefactoringStatus.WARNING)
- return IStatus.WARNING;
- if (severity == RefactoringStatus.INFO)
- return IStatus.INFO;
- return IStatus.OK;
- }
-}

Back to the top