blob: 0998cc013eef2f912c2087e8f3ea5898bd1fff9b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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.ui.refactoring.RefactoringWizard;
import org.eclipse.jdt.internal.corext.refactoring.code.IntroduceIndirectionRefactoring;
/**
* @since 3.2
*/
public class IntroduceIndirectionWizard extends RefactoringWizard {
/**
* Constructor for IntroduceIndirectionWizard.
* @param ref the refactoring
* @param pageTitle the page title
*/
public IntroduceIndirectionWizard(IntroduceIndirectionRefactoring ref, String pageTitle) {
super(ref, DIALOG_BASED_USER_INTERFACE | PREVIEW_EXPAND_FIRST_NODE);
setDefaultPageTitle(pageTitle);
}
/**
* @see RefactoringWizard#addUserInputPages
*/
@Override
protected void addUserInputPages() {
IntroduceIndirectionInputPage page= new IntroduceIndirectionInputPage("IntroduceIndirectionInputPage"); //$NON-NLS-1$
addPage(page);
}
public IntroduceIndirectionRefactoring getIntroduceIndirectionRefactoring() {
return (IntroduceIndirectionRefactoring) getRefactoring();
}
}