1 11 12 package org.eclipse.jdt.internal.corext.refactoring.structure; 13 14 import org.eclipse.core.runtime.CoreException; 15 16 import org.eclipse.jdt.core.dom.MethodDeclaration; 17 18 import org.eclipse.ltk.core.refactoring.RefactoringStatus; 19 20 21 public abstract class BodyUpdater { 22 23 33 public abstract void updateBody(MethodDeclaration methodDeclaration, CompilationUnitRewrite cuRewrite, RefactoringStatus result) throws CoreException; 34 35 41 public boolean needsParameterUsedCheck() { 42 return true; 43 } 44 45 } 46 | Popular Tags |