Visits a dependence of the current module. @param module the fully qualified name (using dots) of the dependence. @param access the access flag of the dependence among ACC_TRANSITIVE, ACC_STATIC_PHASE, ACC_SYNTHETIC and ACC_MANDATED. @param version the module ver
(final String module, final int access, final String version)
| 103 | * @param version the module version at compile time, or <tt>null</tt>. |
| 104 | */ |
| 105 | public void visitRequire(final String module, final int access, final String version) { |
| 106 | if (mv != null) { |
| 107 | mv.visitRequire(module, access, version); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Visit an exported package of the current module. |