add new method to guide javadoc to show helps
This commit is contained in:
parent
fd32c87290
commit
b2d9b2c1d2
|
@ -1,9 +1,23 @@
|
|||
package com.ossez.annotations;
|
||||
|
||||
|
||||
class ClassWithDeprecatedMethod {
|
||||
|
||||
/**
|
||||
* Calculate period between versions
|
||||
* * @deprecated
|
||||
* * This method is no longer acceptable to compute time between versions.
|
||||
* * <p> Use {@link ClassWithDeprecatedMethod#updatedMethod()} instead.
|
||||
*/
|
||||
@Deprecated
|
||||
static void deprecatedMethod() {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Updated Method instead of deprecatedMethod.
|
||||
*/
|
||||
static void updatedMethod() {
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue