/wiki/TagDeprecated.wiki

http://jsdoc-toolkit.googlecode.com/ · Unknown · 23 lines · 16 code · 7 blank · 0 comment · 0 complexity · 0510080289d96731d9e9c75ee5649d97 MD5 · raw file

  1. #summary @deprecated
  2. == The @deprecated Tag ==
  3. The `@deprecated` that a constructor, a method, or property should no longer be used.
  4. === Syntax ===
  5. {{{
  6. @deprecated deprecatedDescription
  7. }}}
  8. * deprecatedDescription - Any information you wish to provide about the deprecated status of the object.
  9. === Example ===
  10. {{{
  11. /**
  12. * @deprecated Since version 0.5. You should now use NewFoo.
  13. */
  14. function Foo() {
  15. }
  16. }}}inks to other wiki pages