Visit an exported package of the current module. @param packaze the internal name of the exported package. @param access the access flag of the exported package, valid values are among ACC_SYNTHETIC and ACC_MANDATED. @param modules the fully qualified names (using dots) of the m
(final String packaze, final int access, final String... modules)
| 118 | * classes of the exported package, or <tt>null</tt>. |
| 119 | */ |
| 120 | public void visitExport(final String packaze, final int access, final String... modules) { |
| 121 | if (mv != null) { |
| 122 | mv.visitExport(packaze, access, modules); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Visit an open package of the current module. |