blob: 5741279b4175c9e872ddbd74226d30b67d2e517f [file] [log] [blame]
package com.intellij.dupLocator.util;
import com.intellij.psi.PsiElement;
/**
* Base class for tree filtering
*/
public interface NodeFilter {
boolean accepts(PsiElement element);
}