Returns the class's access flags (see Opcodes). This value may not reflect Deprecated and Synthetic flags when bytecode is before 1.5 and those flags are represented by attributes. @return the class access flags. @see ClassVisitor#visit(int, int, String, String, String, String[])
()
| 327 | * @see ClassVisitor#visit(int, int, String, String, String, String[]) |
| 328 | */ |
| 329 | public int getAccess() { |
| 330 | return readUnsignedShort(header); |
| 331 | } |
| 332 | |
| 333 | /** |
| 334 | * Returns the internal name of the class (see {@link Type#getInternalName()}). |
nothing calls this directly
no test coverage detected