package jetbrains.mps.baseLanguage.util.plugin.refactorings; /*Generated by MPS */ import org.jetbrains.mps.openapi.model.SNode; import java.util.List; public interface IExtractMethodRefactoringProcessor { SNode getContainerMethod(); SNode createNewMethod(); void addMethod(SNode method); SNode createMethodCall(SNode method, List<SNode> params); SNode getContainerReturnType(); }