/wiki/TagSee.wiki

http://jsdoc-toolkit.googlecode.com/ · Unknown · 28 lines · 18 code · 10 blank · 0 comment · 0 complexity · 89728c39e5cd66c2b107e08768a54901 MD5 · raw file

  1. #summary @see
  2. == The @see Tag ==
  3. The `@see` tag allows you to refer to another symbol or resource that may be related to the one being documented.
  4. === Syntax ===
  5. {{{
  6. @see seeDescription
  7. }}}
  8. * seeDescription - Required: a description of a resource to refer to for more information.
  9. === Example ===
  10. If the first word is a documented symbol then that will become a link to the documentation, otherwise the text is displayed exactly as entered (meaning @link tags will not be rendered).
  11. {{{
  12. /**
  13. * @see ClassName#methodName
  14. * @see The <a href="http://www.example.com">Example Project</a>.
  15. */
  16. }}}
  17. === See Also ===
  18. * The [TagLink @link] tag can be used to duplicate the behavior of @see outside of the @see tag.