public class ModuleOpenNode extends Object
Modifier and Type | Field and Description |
---|---|
int |
access
The access flag of the opened package, valid values are among
ACC_SYNTHETIC and ACC_MANDATED . |
List<String> |
modules
The fully qualified names (using dots) of the modules that can use deep reflection to the
classes of the open package, or null.
|
String |
packaze
The internal name of the opened package.
|
Constructor and Description |
---|
ModuleOpenNode(String packaze,
int access,
List<String> modules)
Constructs a new
ModuleOpenNode . |
Modifier and Type | Method and Description |
---|---|
void |
accept(ModuleVisitor moduleVisitor)
Makes the given module visitor visit this opened package.
|
public String packaze
public int access
ACC_SYNTHETIC
and ACC_MANDATED
.public ModuleOpenNode(String packaze, int access, List<String> modules)
ModuleOpenNode
.packaze
- the internal name of the opened package.access
- the access flag of the opened package, valid values are among ACC_SYNTHETIC
and ACC_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.public void accept(ModuleVisitor moduleVisitor)
moduleVisitor
- a module visitor.Copyright © 2023. All rights reserved.