Module io.inverno.tool.buildtools
Package io.inverno.tool.buildtools
Class ModuleInfo.ExportsDirective
java.lang.Object
io.inverno.tool.buildtools.ModuleInfo.ExportsDirective
- Enclosing class:
ModuleInfo
Represents an exports directive in a module descriptor.
- Since:
- 1.4
- Author:
- Jeremy Kuhn
-
Field Summary
Modifier and TypeFieldDescriptionprotected String
The name of the exported package.The names of the modules to which the package is exported. -
Constructor Summary
ConstructorDescriptionCreates a blank exports directive.ExportsDirective
(String name, List<String> to) Creates an exports directive. -
Method Summary
-
Field Details
-
packageName
The name of the exported package. -
to
The names of the modules to which the package is exported.
-
-
Constructor Details
-
ExportsDirective
public ExportsDirective()Creates a blank exports directive.
-
ExportsDirective
Creates an exports directive.
- Parameters:
name
- the name of the exported packageto
- the list of modules to which the package is exported
-
-
Method Details