blob: 6ecb42d800c365b967b5e0ac37580468fc295f3e [file] [log] [blame]
package com.intellij.structuralsearch;
/**
* Interface of running matching process
*/
public interface MatchingProcess {
void stop();
void pause();
void resume();
boolean isSuspended();
boolean isEnded();
}