MCPcopy Index your code
hub / github.com/clojure/clojure / getClassName

Method getClassName

src/jvm/clojure/asm/ClassReader.java:339–342  ·  view source on GitHub ↗

Returns the internal name of the class (see Type#getInternalName()). @return the internal class name. @see ClassVisitor#visit(int, int, String, String, String, String[])

()

Source from the content-addressed store, hash-verified

337 * @see ClassVisitor#visit(int, int, String, String, String, String[])
338 */
339 public String getClassName() {
340 // this_class is just after the access_flags field (using 2 bytes).
341 return readClass(header + 2, new char[maxStringLength]);
342 }
343
344 /**
345 * Returns the internal of name of the super class (see {@link Type#getInternalName()}). For

Callers

nothing calls this directly

Calls 1

readClassMethod · 0.95

Tested by

no test coverage detected