Interface Document

All Known Implementing Classes:
DocumentImpl

@OpenApiAll public interface Document
The interface represent to Comment Document.
Since:
Sep 3, 2008
  • Method Summary

    Modifier and Type
    Method
    Description
    get(String tagName)
    Return tag of specified kind of this document item.
    Return the full unprocessed text of the comment.
    Return all tags in this document item.
    getTags(String tagName)
    Return tags of specified kind of this document item.
  • Method Details

    • getRawComment

      String getRawComment()
      Return the full unprocessed text of the comment.
      Returns:
      the full unprocessed text of the comment.
    • getTags

      Collection<Tag> getTags()
      Return all tags in this document item.
      Returns:
      collection of tags in this document item
    • getTags

      Collection<Tag> getTags(String tagName)
      Return tags of specified kind of this document item.
      Parameters:
      tagName - tag name
      Returns:
      collection of tags in this document item
    • get

      Tag get(String tagName)
      Return tag of specified kind of this document item. If tags with same kind found, return the first tag of this kind.
      Parameters:
      tagName - tag name
      Returns:
      tag of specified kind of this document item