summaryrefslogtreecommitdiff
path: root/platform/duplicates-analysis/src/com/intellij/dupLocator/treeView/NodeMatcher.java
blob: 3ac62bb83af0bfac01c55dbeeaf825655b8e16b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.intellij.dupLocator.treeView;

import com.intellij.psi.PsiElement;

/**
 * Created by IntelliJ IDEA.
 * User: db
 * Date: Mar 20, 2004
 * Time: 12:31:53 PM
 * To change this template use File | Settings | File Templates.
 */
public interface NodeMatcher {
  boolean match(PsiElement node);
}