How do I deprecate a class or method?
Created May 4, 2012
John Zukowski
Place the @deprecated tag in the javadoc for the class or method, with a reason why you are deprecting the class or method:
/** * @deprecated As of version 3.5, replaced by * fooBar * @see #fooBar(String) */