1 11 package org.eclipse.jdt.internal.ui.refactoring; 12 13 import org.eclipse.ltk.ui.refactoring.RefactoringWizard; 14 15 import org.eclipse.jdt.internal.corext.refactoring.code.IntroduceIndirectionRefactoring; 16 17 20 public class IntroduceIndirectionWizard extends RefactoringWizard { 21 22 27 public IntroduceIndirectionWizard(IntroduceIndirectionRefactoring ref, String pageTitle) { 28 super(ref, DIALOG_BASED_USER_INTERFACE | PREVIEW_EXPAND_FIRST_NODE); 29 setDefaultPageTitle(pageTitle); 30 } 31 32 35 protected void addUserInputPages() { 36 IntroduceIndirectionInputPage page= new IntroduceIndirectionInputPage("IntroduceIndirectionInputPage"); addPage(page); 38 } 39 40 public IntroduceIndirectionRefactoring getIntroduceIndirectionRefactoring() { 41 return (IntroduceIndirectionRefactoring) getRefactoring(); 42 } 43 } 44 | Popular Tags |