/******************************************************************************* * Copyright (c) 2008, 2012 Institute for Software, HSR Hochschule fuer Technik * Rapperswil, University of applied sciences 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: * Tom Ball (Google) - initial API and implementation * Sergey Prigogin (Google) *******************************************************************************/ package org.eclipse.cdt.internal.ui.refactoring.extractlocalvariable; import org.eclipse.jface.viewers.ISelection; import org.eclipse.jface.window.IShellProvider; import org.eclipse.cdt.core.model.ICElement; import org.eclipse.cdt.core.model.ICProject; import org.eclipse.cdt.internal.ui.refactoring.RefactoringRunner; import org.eclipse.cdt.internal.ui.refactoring.RefactoringSaveHelper; /** * Extract Local Variable refactoring runner. * * @author Tom Ball */ public class ExtractLocalVariableRefactoringRunner extends RefactoringRunner { public ExtractLocalVariableRefactoringRunner(ICElement element, ISelection selection, IShellProvider shellProvider, ICProject cProject) { super(element, selection, shellProvider, cProject); } @Override public void run() { ExtractLocalVariableRefactoring refactoring = new ExtractLocalVariableRefactoring(element, selection, project); ExtractLocalVariableWizard wizard = new ExtractLocalVariableWizard(refactoring); run(wizard, refactoring, RefactoringSaveHelper.SAVE_NOTHING); } }