Visits a parameter of this method. @param name parameter name or null if none is provided. @param access the parameter's access flags, only ACC_FINAL , ACC_SYNTHETIC or/and ACC_MANDATED are allowed (see Opcodes).
(final String name, final int access)
| 102 | * or/and <tt>ACC_MANDATED</tt> are allowed (see {@link Opcodes}). |
| 103 | */ |
| 104 | public void visitParameter(final String name, final int access) { |
| 105 | if (api < Opcodes.ASM5) { |
| 106 | throw new UnsupportedOperationException(REQUIRES_ASM5); |
| 107 | } |
| 108 | if (mv != null) { |
| 109 | mv.visitParameter(name, access); |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Visits the default value of this annotation interface method. |