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;
|
package com.ossez.annotations;
|
||||||
|
|
||||||
|
|
||||||
class ClassWithDeprecatedMethod {
|
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
|
@Deprecated
|
||||||
static void deprecatedMethod() {
|
static void deprecatedMethod() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Updated Method instead of deprecatedMethod.
|
||||||
|
*/
|
||||||
|
static void updatedMethod() {
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user