Java Reference
In-Depth Information
*/
@Deprecated
public void dwim() throws IntentUnknownException;
While the compiler may generate a warning if it sees the @deprecated tag,
it is guaranteed to generate a warning if it sees the @Deprecated annota-
tion. You should always use the two together: Use the @deprecated tag
to document the reason for the deprecation, and use the @Deprecated an-
notation to inform the compiler.
19.2.7. @author
The @author tag specifies an author of a class or interface.
@author Aristophanes
@author Ursula K. LeGuin
@author Ibid
You can specify as many @author paragraphs as you desire. You should
use only one author per @author paragraph to get consistent output in all
circumstances.
19.2.8. @version
The @version tag lets you specify an arbitrary version specification for
the class or interface.
@version 1.1
 
Search WWH ::




Custom Search