Class InvalidJavadocTag


  • public final class InvalidJavadocTag
    extends Object
    Value object for storing data about an invalid Javadoc validTags.
    • Field Detail

      • line

        private final int line
        The line in which the invalid tag occurs.
      • col

        private final int col
        The column in which the invalid tag occurs.
      • name

        private final String name
        The name of the invalid tag.
    • Constructor Detail

      • InvalidJavadocTag

        public InvalidJavadocTag​(int line,
                                 int col,
                                 String name)
        Creates an instance.
        Parameters:
        line - the line of the tag
        col - the column of the tag
        name - the name of the invalid tag
    • Method Detail

      • getLine

        public int getLine()
        Getter for line field.
        Returns:
        line field
      • getCol

        public int getCol()
        Getter for col field.
        Returns:
        col field
      • getName

        public String getName()
        Getter for name field.
        Returns:
        name field