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

import com.intellij.psi.PsiElement;


/**
 * CommonStrategy of metching process
 */
public interface MatchingStrategy {
  boolean continueMatching(PsiElement start);

  boolean shouldSkip(PsiElement element, PsiElement elementToMatchWith);
}