MCPcopy
hub / github.com/Col-E/Recaf / getClassReader

Method getClassReader

src/main/java/me/coley/recaf/workspace/Workspace.java:341–346  ·  view source on GitHub ↗

@param name Class name. @return org.objectweb.asm.ClassReader for the given class.

(String name)

Source from the content-addressed store, hash-verified

339 * @return {@link org.objectweb.asm.ClassReader} for the given class.
340 */
341 public ClassReader getClassReader(String name) {
342 byte[] ret = getRawClass(name);
343 if(ret != null)
344 return new ClassReader(ret);
345 return null;
346 }
347
348 /**
349 * @param flags

Callers 14

forMemberMethod · 0.95
matchSignaturesMethod · 0.95
getUnmatchedOuterMethod · 0.80
callMethod · 0.80
callMethod · 0.80
accMethod · 0.80
setupClassMethod · 0.80
updateViewMethod · 0.80
BytecodeEditorPaneMethod · 0.80
disassembleMethod · 0.80
assembleMethod · 0.80
getVertexMethod · 0.80

Calls 1

getRawClassMethod · 0.95

Tested by

no test coverage detected