blob: b9a5340858f080503efc4c49661b78b2f7cf1eb1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 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.jdt.internal.ui.refactoring;
import org.eclipse.ltk.core.refactoring.Refactoring;
import org.eclipse.ltk.ui.refactoring.RefactoringWizard;
import org.eclipse.jdt.internal.corext.refactoring.structure.PullUpRefactoringProcessor;
import org.eclipse.jdt.internal.ui.JavaPluginImages;
/**
* Refactoring wizard for the pull up refactoring.
*/
public final class PullUpWizard extends RefactoringWizard {
/** The page name */
private static final String PAGE_NAME= "PullUpMemberPage"; //$NON-NLS-1$
private final PullUpRefactoringProcessor fProcessor;
/**
* Creates a new pull up wizard.
*
* @param processor
* the processor
*
* @param refactoring
* the pull up refactoring
*/
public PullUpWizard(PullUpRefactoringProcessor processor, Refactoring refactoring) {
super(refactoring, WIZARD_BASED_USER_INTERFACE);
fProcessor= processor;
setDefaultPageTitle(RefactoringMessages.PullUpWizard_defaultPageTitle);
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_REFACTOR_PULL_UP);
}
/**
* {@inheritDoc}
*/
@Override
protected void addUserInputPages() {
final PullUpMethodPage page= new PullUpMethodPage(fProcessor);
addPage(new PullUpMemberPage(PullUpWizard.PAGE_NAME, page, fProcessor));
addPage(page);
}
}