(Class<?> clazz, String className)
| 12 | public final String className; |
| 13 | |
| 14 | public ClassInfo(Class<?> clazz, String className) { |
| 15 | methods = new HashMap<String, Method>(); |
| 16 | fields = new HashMap<String, Field>(); |
| 17 | this.clazz = clazz; |
| 18 | this.className = className; |
| 19 | } |
| 20 | |
| 21 | public void addCachedMethod(String key, Method method) { |
| 22 | methods.put(key, method); |
nothing calls this directly
no outgoing calls
no test coverage detected