I would like to make one of my methods "deprecated" = not used anymore.
But still I would like to have it in my API. I just want to show "warning" to anyone using that method.
How can I achieve that?
|
I would like to make one of my methods "deprecated" = not used anymore. But still I would like to have it in my API. I just want to show "warning" to anyone using that method. How can I achieve that? |
||||
|
Use @Deprecated on method. Don't forget about clarifying javadoc field:
|
|||
|
|
|
Use both @Deprecated annotation and the @deprecated JavaDoc tag. The @deprecated JavaDoc tag is used for documentation purposes. The @Deprecated annotation instructs the compiler that the method is deprecated. Here is what it says in Sun/Oracles document on the subject:
You can find the full document at How and When to Deprecate APIs |
|||||||
|
|
There are two things you can do:
You should do both! Quoting the java documentation on this subject:
|
|||||
|
|
Use the annotation |
|||
|
|
@Deprecated. 3 e's, not 4. ( Also no 2nd 'r' ;). – Andrew Thompson Jan 27 '12 at 10:36