com.puppycrawl.tools.checkstyle.filters
public class SuppressionCommentFilter.Tag extends Object implements Comparable
| Constructor Summary | |
|---|---|
| Tag(int aLine, int aColumn, String aText, boolean aOn)
Constructs a tag. | |
| Method Summary | |
|---|---|
| int | compareTo(Object aObject)
Compares the position of this tag in the file
with the position of another tag. |
| int | getColumn()
Determines the column number of the tag in the source file.
|
| int | getLine() |
| String | getText() |
| boolean | isMatch(AuditEvent aEvent)
Determines whether the source of an audit event
matches the text of this tag. |
| boolean | isOn()
Determines whether the suppression turns checkstyle reporting on or
off. |
| String | toString() |
Parameters: aLine the line number. aColumn the column number. aText the text of the suppression. aOn true if the tag turns checkstyle reporting.
Throws: ConversionException if unable to parse expanded aText. on.
Parameters: aObject the tag to compare with this one.
Returns: a negative number if this tag is before the other tag, 0 if they are at the same position, and a positive number if this tag is after the other tag.
See Also: java.lang.Comparable#compareTo(java.lang.Object)
Returns: the column number of the tag in the source file.
Returns: the line number of the tag in the source file.
Returns: the text of the tag.
Parameters: aEvent the AuditEvent to check.
Returns: true if the source of aEvent matches the text of this tag.
Returns: trueif the suppression turns reporting on.