A 'block' tag within a {@link DocComment}.
The start of a block tag is indicated within the comment by an '@'-prefixed word appearing at the start of a line (ignoring optional leading whitespace and '*' characters).
For example the following comment includes a 'see' block tag:
/ * Good. * @see MyClass */
If this text is not the first thing on the line, it is not interpreted as a block tag. Here, '@see' will just be interpreted as part of the description text, and metaas will not generate a DocTag for it:
/ * Bad. @see MyClass */
@see DocComment#addParaTag(String,String)
@see DocComment#delete(DocTag)
@see DocComment#findFirstTag(String)
@see DocComment#findTags(String)