You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some methods in KiwiReflection only find public members, while others attempt to find members (field, method, etc.) regardless of access modifier, and those methods typically call setAccessible(true) .
The javadocs on some methods make it clear whether it is finding any member, or only public ones. But the javadoc on other methods does not. This is to update the javadocs to make it clear for every method in this class what it does, i.e. does it only find public members? Does it find members regardless of access modifier? Does it call setAccessible(true), etc?
The text was updated successfully, but these errors were encountered:
* Update javadoc for getFieldValue and setFieldValue with note that
they call setAccessible on non-public methods
* Remove what can only be described as a incomplete thought on the
javadoc of the setFieldValue which acceprs a Field
Closes#947
#967)
* Update javadoc for getFieldValue and setFieldValue with note that
they call setAccessible on non-public methods
* Remove what can only be described as a incomplete thought on the
javadoc of the setFieldValue which acceprs a Field
Closes#947
Some methods in
KiwiReflection
only find public members, while others attempt to find members (field, method, etc.) regardless of access modifier, and those methods typically callsetAccessible(true)
.The javadocs on some methods make it clear whether it is finding any member, or only public ones. But the javadoc on other methods does not. This is to update the javadocs to make it clear for every method in this class what it does, i.e. does it only find public members? Does it find members regardless of access modifier? Does it call
setAccessible(true)
, etc?The text was updated successfully, but these errors were encountered: