类 ModuleExportNode
java.lang.Object
cn.taketoday.bytecode.tree.ModuleExportNode
A node that represents an exported package with its name and the module that can access to it.
- 作者:
- Remi Forax
-
字段概要
字段 -
构造器概要
构造器构造器说明ModuleExportNode(String packaze, int access, List<String> modules) Constructs a newModuleExportNode. -
方法概要
修饰符和类型方法说明voidaccept(ModuleVisitor moduleVisitor) Makes the given module visitor visit this export declaration.
-
字段详细资料
-
packaze
The internal name of the exported package. -
access
public int access -
modules
The list of modules that can access this exported package, specified with fully qualified names (using dots). May be null.
-
-
构造器详细资料
-
ModuleExportNode
Constructs a newModuleExportNode.- 参数:
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).
-
-
方法详细资料
-
accept
Makes the given module visitor visit this export declaration.- 参数:
moduleVisitor- a module visitor.
-