{@link}
tags, return an array of Tag
objects. The entire doc comment is broken down into strings separated by {@link}
tags, where each successive element of the array represents either a string or {@link}
tag, in order, from start to end. Each string is represented by a Tag
object of name "Text", where {@link #text()} returns the string. Each {@link}
tag is represented by a {@link SeeTag} of name "@link" and kind "@see".For example, given the following comment tag: This is a {@link Doc commentlabel} example.
return an array of Tag objects:
Doc
and label "commentlabel"
|
|
|
|