(boolean isStatic, String accessType, ReflectorField refField, Object val)
| 1046 | } |
| 1047 | |
| 1048 | private static void dbgFieldValue(boolean isStatic, String accessType, ReflectorField refField, Object val) |
| 1049 | { |
| 1050 | String s = refField.getTargetField().getDeclaringClass().getName(); |
| 1051 | String s1 = refField.getTargetField().getName(); |
| 1052 | String s2 = ""; |
| 1053 | |
| 1054 | if (isStatic) |
| 1055 | { |
| 1056 | s2 = " static"; |
| 1057 | } |
| 1058 | |
| 1059 | Log.dbg(accessType + s2 + " " + s + "." + s1 + " => " + val); |
| 1060 | } |
| 1061 | |
| 1062 | private static void handleException(Throwable e, Object obj, ReflectorMethod refMethod, Object[] params) |
| 1063 | { |
nothing calls this directly
no test coverage detected