(boolean isStatic, String callType, ReflectorMethod refMethod, Object[] params, Object retVal)
| 1018 | } |
| 1019 | |
| 1020 | private static void dbgCall(boolean isStatic, String callType, ReflectorMethod refMethod, Object[] params, Object retVal) |
| 1021 | { |
| 1022 | String s = refMethod.getTargetMethod().getDeclaringClass().getName(); |
| 1023 | String s1 = refMethod.getTargetMethod().getName(); |
| 1024 | String s2 = ""; |
| 1025 | |
| 1026 | if (isStatic) |
| 1027 | { |
| 1028 | s2 = " static"; |
| 1029 | } |
| 1030 | |
| 1031 | Log.dbg(callType + s2 + " " + s + "." + s1 + "(" + ArrayUtils.arrayToString(params) + ") => " + retVal); |
| 1032 | } |
| 1033 | |
| 1034 | private static void dbgCallVoid(boolean isStatic, String callType, ReflectorMethod refMethod, Object[] params) |
| 1035 | { |
nothing calls this directly
no test coverage detected