1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.lang.java.ast; 5 6 import net.sourceforge.pmd.Rule; 7 8 public interface CanSuppressWarnings { 9 boolean hasSuppressWarningsAnnotationFor(Rule rule); 10 }