25 lines
587 B
Plaintext
25 lines
587 B
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
----
|
|
public void makeItPublic(String methodName) throws NoSuchMethodException {
|
|
|
|
this.getClass().getMethod(methodName).setAccessible(true); // Noncompliant
|
|
}
|
|
|
|
public void setItAnyway(String fieldName, int value) {
|
|
this.getClass().getDeclaredField(fieldName).setInt(this, value); // Noncompliant; bypasses controls in setter
|
|
}
|
|
----
|
|
|
|
include::../see.adoc[]
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|