MCPcopy Index your code
hub / github.com/apache/groovy / getName

Method getName

src/main/java/org/codehaus/groovy/ast/ClassNode.java:480–482  ·  view source on GitHub ↗

Returns the fully-qualified name of this class after following any redirects. If this ClassNode is a proxy for another ClassNode, the name of the target is returned. The name remains consistent across all compilation phases for the redirected type. @return the fully-qualified class name (e.g., "com

()

Source from the content-addressed store, hash-verified

478 * @return the fully-qualified class name (e.g., "com.example.MyClass" or "int[]")
479 */
480 public String getName() {
481 return redirect().name;
482 }
483
484 /**
485 * Sets the fully-qualified name of this class, delegating to the redirect if one exists.

Callers 15

createClosureClassMethod · 0.95
addValidatedNameMethod · 0.95
enclosingClassNameMethod · 0.95
makeTypeMethod · 0.95
testPlainReferenceMethod · 0.95
createPropertyHandlerMethod · 0.95
getTypeNameMethod · 0.95
visitBinaryExpressionMethod · 0.95
resolveToInnerMethod · 0.95
resolveFromModuleMethod · 0.95

Calls 1

redirectMethod · 0.95

Tested by 1

testPlainReferenceMethod · 0.76