blob: cb4fe97a9ec4776eb894f15059b9211bda3fa867 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.corext.refactoring.scripting;
import org.eclipse.ltk.core.refactoring.Refactoring;
import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jdt.internal.corext.refactoring.JavaRefactoringContribution;
import org.eclipse.jdt.internal.corext.refactoring.rename.JavaRenameRefactoring;
import org.eclipse.jdt.internal.corext.refactoring.rename.RenameVirtualMethodProcessor;
/**
* Refactoring contribution for the rename method refactoring.
*
* @since 3.2
*/
public final class RenameMethodRefactoringContribution extends JavaRefactoringContribution {
/**
* {@inheritDoc}
*/
public Refactoring createRefactoring(final RefactoringDescriptor descriptor) throws JavaModelException {
return new JavaRenameRefactoring(new RenameVirtualMethodProcessor(null));
}
}