Module org.eclipse.persistence.asm
Class ModuleProvideNode
java.lang.Object
org.eclipse.persistence.internal.libraries.asm.tree.ModuleProvideNode
A node that represents a service and its implementation provided by the current module.
-
Field Summary
-
Constructor Summary
ConstructorDescriptionModuleProvideNode
(String service, List<String> providers) Constructs a newModuleProvideNode
. -
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(ModuleVisitor moduleVisitor) Makes the given module visitor visit this require declaration.
-
Field Details
-
service
The internal name of the service (seeType.getInternalName()
). -
providers
The internal names of the implementations of the service (there is at least one provider). SeeType.getInternalName()
.
-
-
Constructor Details
-
ModuleProvideNode
Constructs a newModuleProvideNode
.- Parameters:
service
- the internal name of the service.providers
- the internal names of the implementations of the service (there is at least one provider). SeeType.getInternalName()
.
-
-
Method Details
-
accept
Makes the given module visitor visit this require declaration.- Parameters:
moduleVisitor
- a module visitor.
-