/******************************************************************************* * Copyright (c) 2008, 2011 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: * Institute for Software - initial API and implementation * Marc-Andre Laperle *******************************************************************************/ package org.eclipse.cdt.internal.ui.refactoring.implementmethod; import org.eclipse.jface.viewers.ISelection; import org.eclipse.jface.window.IShellProvider; import org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation; import org.eclipse.cdt.core.model.ICElement; import org.eclipse.cdt.core.model.ICProject; import org.eclipse.cdt.internal.ui.refactoring.RefactoringASTCache; import org.eclipse.cdt.internal.ui.refactoring.RefactoringRunner2; /** * @author Lukas Felber */ public class ImplementMethodRefactoringRunner extends RefactoringRunner2 { public ImplementMethodRefactoringRunner(ICElement element, ISelection selection, IShellProvider shellProvider, ICProject cProject) { super(element, selection, shellProvider, cProject); } @Override public void run(RefactoringASTCache astCache) { ImplementMethodRefactoring refactoring = new ImplementMethodRefactoring(element, selection, project, astCache); ImplementMethodRefactoringWizard wizard = new ImplementMethodRefactoringWizard(refactoring); RefactoringWizardOpenOperation operator = new RefactoringWizardOpenOperation(wizard); try { operator.run(shellProvider.getShell(), refactoring.getName()); } catch (InterruptedException e) { Thread.currentThread().interrupt(); } } }