41 lines
654 B
Plaintext
41 lines
654 B
Plaintext
include::../description.adoc[]
|
|
|
|
include::../noncompliant.adoc[]
|
|
|
|
include::../compliant.adoc[]
|
|
|
|
== Exceptions
|
|
|
|
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.
|
|
|
|
|
|
----
|
|
/**
|
|
* @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[]
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|