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