]> git.uio.no Git - ifi-stolz-refaktor.git/blob - case-study/jdt-before/core refactoring/org/eclipse/jdt/internal/corext/refactoring/scripting/RenameFieldRefactoringContribution.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / jdt-before / core refactoring / org / eclipse / jdt / internal / corext / refactoring / scripting / RenameFieldRefactoringContribution.java
1 /*******************************************************************************
2  * Copyright (c) 2005, 2011 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package org.eclipse.jdt.internal.corext.refactoring.scripting;
12
13 import java.util.Map;
14
15 import org.eclipse.ltk.core.refactoring.Refactoring;
16 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
17 import org.eclipse.ltk.core.refactoring.RefactoringStatus;
18 import org.eclipse.ltk.core.refactoring.participants.RenameRefactoring;
19
20 import org.eclipse.jdt.core.refactoring.IJavaRefactorings;
21 import org.eclipse.jdt.core.refactoring.descriptors.JavaRefactoringDescriptor;
22
23 import org.eclipse.jdt.internal.core.refactoring.descriptors.RefactoringSignatureDescriptorFactory;
24 import org.eclipse.jdt.internal.corext.refactoring.JavaRefactoringArguments;
25 import org.eclipse.jdt.internal.corext.refactoring.rename.RenameFieldProcessor;
26
27 /**
28  * Refactoring contribution for the rename field refactoring.
29  *
30  * @since 3.2
31  */
32 public final class RenameFieldRefactoringContribution extends JavaUIRefactoringContribution {
33
34         /**
35          * {@inheritDoc}
36          */
37         @Override
38         public Refactoring createRefactoring(JavaRefactoringDescriptor descriptor, RefactoringStatus status) {
39                 JavaRefactoringArguments arguments= new JavaRefactoringArguments(descriptor.getProject(), retrieveArgumentMap(descriptor));
40                 RenameFieldProcessor processor= new RenameFieldProcessor(arguments, status);
41                 return new RenameRefactoring(processor);
42         }
43
44         @Override
45         public RefactoringDescriptor createDescriptor() {
46                 return RefactoringSignatureDescriptorFactory.createRenameJavaElementDescriptor(IJavaRefactorings.RENAME_FIELD);
47         }
48
49         @Override
50         public RefactoringDescriptor createDescriptor(String id, String project, String description, String comment, Map arguments, int flags) {
51                 return RefactoringSignatureDescriptorFactory.createRenameJavaElementDescriptor(id, project, description, comment, arguments, flags);
52         }
53 }