Returns the internal name of the class (see Type#getInternalName()). @return the internal class name. @see ClassVisitor#visit(int, int, String, String, String, String[])
()
| 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 |