blob: 0c958e3b89a3f735e93b2183916e8abf7a73a8d2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2011 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.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.ExtractSupertypeProcessor;
import org.eclipse.jdt.internal.ui.JavaPluginImages;
/**
* Refactoring wizard for the extract supertype refactoring.
*
* @since 3.2
*/
public final class ExtractSupertypeWizard extends RefactoringWizard {
/** The page name */
private static final String PAGE_NAME= "ExtractSupertypeMemberPage"; //$NON-NLS-1$
private final ExtractSupertypeProcessor fProcessor;
/**
* Creates a new extract supertype wizard.
*
* @param processor
* the processor
*
* @param refactoring
* the refactoring
*/
public ExtractSupertypeWizard(ExtractSupertypeProcessor processor, Refactoring refactoring) {
super(refactoring, WIZARD_BASED_USER_INTERFACE);
fProcessor= processor;
setDefaultPageTitle(RefactoringMessages.ExtractSupertypeWizard_defaultPageTitle);
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_REFACTOR_EXTRACT_SUPERTYPE);
}
@Override
protected void addUserInputPages() {
final ExtractSupertypeMethodPage page= new ExtractSupertypeMethodPage(fProcessor);
addPage(new ExtractSupertypeMemberPage(PAGE_NAME, page, fProcessor));
addPage(page);
}
}