类 ModuleProvideNode
java.lang.Object
cn.taketoday.bytecode.tree.ModuleProvideNode
A node that represents a service and its implementation provided by the current module.
- 作者:
- Remi Forax
-
字段概要
字段 -
构造器概要
构造器构造器说明ModuleProvideNode(String service, List<String> providers) Constructs a newModuleProvideNode. -
方法概要
修饰符和类型方法说明voidaccept(ModuleVisitor moduleVisitor) Makes the given module visitor visit this require declaration.
-
字段详细资料
-
service
The internal name of the service. -
providers
The internal names of the implementations of the service (there is at least one provider).
-
-
构造器详细资料
-
ModuleProvideNode
Constructs a newModuleProvideNode.- 参数:
service- the internal name of the service.providers- the internal names of the implementations of the service (there is at least one provider).
-
-
方法详细资料
-
accept
Makes the given module visitor visit this require declaration.- 参数:
moduleVisitor- a module visitor.
-