Visits the header of the class. @param version the class version. The minor version is stored in the 16 most significant bits, and the major version in the 16 least significant bits. @param access the class's access flags (see Opcodes). This parameter also indicates if the class is
(
final int version,
final int access,
final String name,
final String signature,
final String superName,
final String[] interfaces)
| 95 | * Type#getInternalName()}). May be <tt>null</tt>. |
| 96 | */ |
| 97 | public void visit( |
| 98 | final int version, |
| 99 | final int access, |
| 100 | final String name, |
| 101 | final String signature, |
| 102 | final String superName, |
| 103 | final String[] interfaces) { |
| 104 | if (cv != null) { |
| 105 | cv.visit(version, access, name, signature, superName, interfaces); |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Visits the source of the class. |
no outgoing calls
no test coverage detected