Class InvalidJavadocTag
- java.lang.Object
-
- com.puppycrawl.tools.checkstyle.checks.javadoc.InvalidJavadocTag
-
public final class InvalidJavadocTag extends Object
Value object for storing data about an invalid Javadoc validTags.
-
-
Constructor Summary
Constructors Constructor Description InvalidJavadocTag(int line, int col, String name)
Creates an instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCol()
Getter for col field.int
getLine()
Getter for line field.String
getName()
Getter for name field.
-
-
-
Constructor Detail
-
InvalidJavadocTag
public InvalidJavadocTag(int line, int col, String name)
Creates an instance.- Parameters:
line
- the line of the tagcol
- the column of the tagname
- the name of the invalid tag
-
-