Visit an open package of the current module. @param packaze the internal name of the opened package. @param access the access flag of the opened package, valid values are among ACC_SYNTHETIC and ACC_MANDATED. @param modules the fully qualified names (using dots) of the modules t
(final String packaze, final int access, final String... modules)
| 133 | * reflection to the classes of the open package, or <tt>null</tt>. |
| 134 | */ |
| 135 | public void visitOpen(final String packaze, final int access, final String... modules) { |
| 136 | if (mv != null) { |
| 137 | mv.visitOpen(packaze, access, modules); |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * Visit a service used by the current module. The name must be the internal name of an interface |