summaryrefslogtreecommitdiff
path: root/plugins/structuralsearch/source/com/intellij/structuralsearch/impl/matcher/predicates/ContainsPredicate.java
blob: 2ed894fe6b64702919c366325ee419bc033eff1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.intellij.structuralsearch.impl.matcher.predicates;

import com.intellij.psi.PsiElement;
import com.intellij.structuralsearch.impl.matcher.MatchContext;

/**
 * @author Maxim.Mossienko
 */
public class ContainsPredicate extends AbstractStringBasedPredicate {

  public ContainsPredicate(String name, String within) {
    super(name, within);
  }

  public boolean match(PsiElement node, PsiElement match, int start, int end, MatchContext context) {
    return false;
  }
}