]> git.uio.no Git - ifi-stolz-refaktor.git/blob - case-study/jdt-after/core refactoring/org/eclipse/jdt/internal/corext/refactoring/scripting/SelfEncapsulateRefactoringContribution.java
Some talks, mostly identical.
[ifi-stolz-refaktor.git] / case-study / jdt-after / core refactoring / org / eclipse / jdt / internal / corext / refactoring / scripting / SelfEncapsulateRefactoringContribution.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.core.runtime.CoreException;
16
17 import org.eclipse.ltk.core.refactoring.Refactoring;
18 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
19 import org.eclipse.ltk.core.refactoring.RefactoringStatus;
20
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.sef.SelfEncapsulateFieldRefactoring;
25
26 /**
27  * Refactoring contribution for the self encapsulate field refactoring.
28  *
29  * @since 3.2
30  */
31 public final class SelfEncapsulateRefactoringContribution extends JavaUIRefactoringContribution {
32
33         /**
34          * {@inheritDoc}
35          */
36         @Override
37         public final Refactoring createRefactoring(JavaRefactoringDescriptor descriptor, RefactoringStatus status) throws CoreException {
38                 SelfEncapsulateFieldRefactoring refactoring= new SelfEncapsulateFieldRefactoring(null);
39                 return refactoring.generated_8252411552231870148(descriptor, status, this);
40         }
41
42         @Override
43         public RefactoringDescriptor createDescriptor() {
44                 return RefactoringSignatureDescriptorFactory.createEncapsulateFieldDescriptor();
45         }
46
47         @Override
48         public RefactoringDescriptor createDescriptor(String id, String project, String description, String comment, Map arguments, int flags) {
49                 return RefactoringSignatureDescriptorFactory.createEncapsulateFieldDescriptor(project, description, comment, arguments, flags);
50         }
51 }