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
()
| 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. |