类 ModuleOpenNode
java.lang.Object
cn.taketoday.bytecode.tree.ModuleOpenNode
A node that represents an opened package with its name and the module that can access it.
- 作者:
- Remi Forax
-
字段概要
字段修饰符和类型字段说明intThe access flag of the opened package, valid values are amongACC_SYNTHETICandACC_MANDATED.The fully qualified names (using dots) of the modules that can use deep reflection to the classes of the open package, or null.The internal name of the opened package. -
构造器概要
构造器构造器说明ModuleOpenNode(String packaze, int access, List<String> modules) Constructs a newModuleOpenNode. -
方法概要
修饰符和类型方法说明voidaccept(ModuleVisitor moduleVisitor) Makes the given module visitor visit this opened package.
-
字段详细资料
-
packaze
The internal name of the opened package. -
access
public int accessThe access flag of the opened package, valid values are amongACC_SYNTHETICandACC_MANDATED. -
modules
The fully qualified names (using dots) of the modules that can use deep reflection to the classes of the open package, or null.
-
-
构造器详细资料
-
ModuleOpenNode
Constructs a newModuleOpenNode.- 参数:
packaze- the internal name of the opened package.access- the access flag of the opened package, valid values are amongACC_SYNTHETICandACC_MANDATED.modules- the fully qualified names (using dots) of the modules that can use deep reflection to the classes of the open package, or null.
-
-
方法详细资料
-
accept
Makes the given module visitor visit this opened package.- 参数:
moduleVisitor- a module visitor.
-