rspec/rules/S1123/java/rule.adoc

88 lines
1.5 KiB
Plaintext
Raw Normal View History

== Why is this an issue?
Deprecation should be marked with both the ``++@Deprecated++`` annotation and @deprecated Javadoc tag. The annotation enables tools such as IDEs to warn about referencing deprecated elements, and the tag can be used to explain when it was deprecated, why, and how references should be refactored.
2020-06-30 12:47:33 +02:00
=== Noncompliant code example
[source,java]
----
class MyClass {
@Deprecated
public void foo1() { // Noncompliant: Add the missing @deprecated Javadoc tag.
}
/**
* @deprecated
*/
public void foo2() { // Noncompliant: Add the missing @Deprecated annotation.
}
}
----
=== Compliant solution
[source,java]
----
class MyClass {
/**
* @deprecated (when, why, refactoring advice...)
*/
@Deprecated
public void foo1() {
}
}
----
2020-06-30 12:47:33 +02:00
=== Exceptions
2020-06-30 12:47:33 +02:00
The members and methods of a deprecated class or interface are ignored by this rule. The classes and interfaces themselves are still subject to it.
2021-02-02 15:02:10 +01:00
[source,java]
2020-06-30 12:47:33 +02:00
----
/**
* @deprecated (when, why, etc...)
*/
@Deprecated
class Qix {
public void foo() {} // Compliant; class is deprecated
}
/**
* @deprecated (when, why, etc...)
*/
@Deprecated
interface Plop {
void bar();
}
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
Add the missing [@Deprecated annotation | @deprecated Javadoc tag].
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]