如何使用JDT / LTK以编程方式执行内联重构?

时间:2012-10-15 15:18:13

标签: eclipse eclipse-jdt eclipse-plugin ltk

当我需要内联方法时,我可以使用Refactor->Inine

enter image description here enter image description here enter image description here enter image description here

这是我尝试过的代码框架,我使用了这篇文章中的代码 - Is there any eclipse refactoring API that I can call programmatically?

// 1. Get ICompiationUnit for type "smcho.Hello"
IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
IProject project = root.getProject("Hello");
project.open(null /* IProgressMonitor */);

IJavaProject javaProject = JavaCore.create(project);
IType itype = javaProject.findType("smcho.Hello");
org.eclipse.jdt.core.ICompilationUnit icu = itype.getCompilationUnit();

// 2. Contribution and Description creation
RefactoringContribution contribution = RefactoringCore.getRefactoringContribution(IJavaRefactorings.INLINE_METHOD);
InlineMethodDescriptor descriptor = (InlineMethodDescriptor) contribution.createDescriptor();

descriptor.setProject(icu.getResource().getProject().getName( ));

// 3. executing the refactoring
RefactoringStatus status = new RefactoringStatus();
try {
    Refactoring refactoring = descriptor.createRefactoring(status);

    IProgressMonitor monitor = new NullProgressMonitor();
    refactoring.checkInitialConditions(monitor);
    refactoring.checkFinalConditions(monitor);
    Change change = refactoring.createChange(monitor);
    change.perform(monitor);
} catch (CoreException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} catch (Exception e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} 

当我执行代码时,我收到此错误

org.eclipse.core.runtime.CoreException: The refactoring script argument 'input' is missing 
in the refactoring script.  

我认为我需要将重构的方法名称提供给API。代码中可能有什么问题?

2 个答案:

答案 0 :(得分:2)

您从未在上述代码中为重构操作提供方法,您只需为其提供项目上下文。但我不知道必要的API。

如果查看this source code,您会注意到使用了JavaRefactoringDescriptorUtil.ATTRIBUTE_INPUT,这可能是您需要设置的。也许你可以在refactoring.ui插件源中搜索对该属性的引用。

答案 1 :(得分:2)

这是与内联重构JDT API一起使用的代码。 它需要内联起始位置和长度。

int[] selection= {start, length}; // getSelection();
InlineMethodRefactoring refactoring= InlineMethodRefactoring.create(this.icu, new RefactoringASTParser(ASTProvider.SHARED_AST_LEVEL).parse(this.icu, true), selection[0], selection[1]);
refactoring.setDeleteSource(true);
refactoring.setCurrentMode(Mode.INLINE_ALL); // or INLINE SINGLE based on the user's intervention

IProgressMonitor pm= new NullProgressMonitor();
RefactoringStatus res = refactoring.checkInitialConditions(pm);
res = refactoring.checkFinalConditions(pm);

final PerformRefactoringOperation op= new PerformRefactoringOperation(
refactoring, getCheckingStyle());
op.run(new NullProgressMonitor());

当您知道将要内联的方法的名称时,您可以使用 - Getting startPosition and length of a method invocation using JDT

中的代码