Visits a field of the class. @param access the field's access flags (see Opcodes). This parameter also indicates if the field is synthetic and/or deprecated. @param name the field's name. @param descriptor the field's descriptor (see Type). @param signature the field's signature
(
final int access,
final String name,
final String descriptor,
final String signature,
final Object value)
| 290 | * visitor is not interested in visiting these annotations and attributes. |
| 291 | */ |
| 292 | public FieldVisitor visitField( |
| 293 | final int access, |
| 294 | final String name, |
| 295 | final String descriptor, |
| 296 | final String signature, |
| 297 | final Object value) { |
| 298 | if (cv != null) { |
| 299 | return cv.visitField(access, name, descriptor, signature, value); |
| 300 | } |
| 301 | return null; |
| 302 | } |
| 303 | |
| 304 | /** |
| 305 | * Visits a method of the class. This method <i>must</i> return a new {@link MethodVisitor} |
no outgoing calls
no test coverage detected