com.puppycrawl.tools.checkstyle.api
Interface Filter

All Known Implementing Classes:
FilterSet, SeverityMatchFilter, SuppressElement, SuppressionCommentFilter, SuppressionFilter

public interface Filter

An interface for filtering AuditEvents.

Author:
Rick Giles

Method Summary
 boolean accept(AuditEvent aEvent)
          Determines whether or not a filtered AuditEvent is accepted.
 

Method Detail

accept

public boolean accept(AuditEvent aEvent)
Determines whether or not a filtered AuditEvent is accepted.

Parameters:
aEvent - the AudtiEvent to filter.
Returns:
true if the aEvent is accepted.

Back to the Checkstyle Home Page