Interface MatchSuppressor
-
- All Known Implementing Classes:
CommentSuppressor,NeverSuppress
public interface MatchSuppressorRepresents a suppressor for matches.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanshouldSuppress(int startLineNo, int startColNo, int endLineNo, int endColNo)Checks if the specified selection should be suppressed.
-
-
-
Method Detail
-
shouldSuppress
boolean shouldSuppress(int startLineNo, int startColNo, int endLineNo, int endColNo)Checks if the specified selection should be suppressed.- Parameters:
startLineNo- the starting line numberstartColNo- the starting column numberendLineNo- the ending line numberendColNo- the ending column number- Returns:
- true if the positions intersects with a comment.
-
-