Package org.objectweb.asm.tree
Class ModuleExportNode
- java.lang.Object
-
- org.objectweb.asm.tree.ModuleExportNode
-
public class ModuleExportNode extends java.lang.ObjectA node that represents an exported package with its name and the module that can access to it.
-
-
Field Summary
Fields Modifier and Type Field Description intaccessThe access flags (seeOpcodes).java.util.List<java.lang.String>modulesThe list of modules that can access this exported package, specified with fully qualified names (using dots).java.lang.StringpackazeThe internal name of the exported package.
-
Constructor Summary
Constructors Constructor Description ModuleExportNode(java.lang.String packaze, int access, java.util.List<java.lang.String> modules)Constructs a newModuleExportNode.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(ModuleVisitor moduleVisitor)Makes the given module visitor visit this export declaration.
-
-
-
Constructor Detail
-
ModuleExportNode
public ModuleExportNode(java.lang.String packaze, int access, java.util.List<java.lang.String> modules)Constructs a newModuleExportNode.- Parameters:
packaze- the internal name of the exported package.access- the package access flags, one or more ofACC_SYNTHETICandACC_MANDATED.modules- a list of modules that can access this exported package, specified with fully qualified names (using dots).
-
-
Method Detail
-
accept
public void accept(ModuleVisitor moduleVisitor)
Makes the given module visitor visit this export declaration.- Parameters:
moduleVisitor- a module visitor.
-
-