summaryrefslogtreecommitdiff
path: root/plugins/structuralsearch/source/com/intellij/structuralsearch/MatchingProcess.java
blob: 6ecb42d800c365b967b5e0ac37580468fc295f3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.intellij.structuralsearch;

/**
 * Interface of running matching process
 */
public interface MatchingProcess {
  void stop();
  void pause();
  void resume();

  boolean isSuspended();
  boolean isEnded();
}