MCPcopy Create free account
hub / github.com/TIIEHenry/HyperOSRuntime / ClassInfo

Method ClassInfo

app/src/main/java/nota/reflect/ClassInfo.java:14–19  ·  view source on GitHub ↗
(Class<?> clazz, String className)

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected