package no.uio.ifi.refaktor.changers; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IProgressMonitor; public interface Executor { public void checkPreconditions() throws RefaktorChangerException; public void executeChange(IProgressMonitor monitor, UndoResources undoResources) throws CoreException; }