Class TagInfo


  • public final class TagInfo
    extends java.lang.Object
    Value object for storing data about a parsed tag.
    • Constructor Summary

      Constructors 
      Constructor Description
      TagInfo​(java.lang.String name, java.lang.String value, LineColumn position)
      Constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Return name of tag.
      LineColumn getPosition()
      Return position of tag.
      java.lang.String getValue()
      Return value of tag.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • TagInfo

        public TagInfo​(java.lang.String name,
                       java.lang.String value,
                       LineColumn position)
        Constructor.
        Parameters:
        name - The name of the tag.
        value - The value of the tag.
        position - The position of the tag in the comment.
    • Method Detail

      • getName

        public java.lang.String getName()
        Return name of tag.
        Returns:
        Name of the tag.
      • getValue

        public java.lang.String getValue()
        Return value of tag.
        Returns:
        Value of the tag.
      • getPosition

        public LineColumn getPosition()
        Return position of tag.
        Returns:
        Value of the tag.