Package org.codehaus.janino
Class Java.ExportsModuleDirective
- java.lang.Object
-
- org.codehaus.janino.Java.Located
-
- org.codehaus.janino.Java.ExportsModuleDirective
-
- All Implemented Interfaces:
Java.Locatable,Java.ModuleDirective
- Enclosing class:
- Java
public static final class Java.ExportsModuleDirective extends Java.Located implements Java.ModuleDirective
Representation of a (Java 9+) "exports directive", as explained in JLS9 7.7.2.
-
-
Field Summary
Fields Modifier and Type Field Description String[]packageNameThe name of a package to be exported by this module, see JLS9 7.7.2.String[][]toModuleNamesThe names of the modules for which the public and protected types in this package, and their public and protected members, are accessible.-
Fields inherited from class org.codehaus.janino.Java.Located
NOWHERE
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedExportsModuleDirective(Location location, String[] packageName, String[][] toModuleNames)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,EX extends Throwable>
Raccept(Visitor.ModuleDirectiveVisitor<R,EX> visitor)Invokes the "visit...()" method ofVisitor.ModuleDirectiveVisitorfor the concreteJava.ModuleDirectivetype.-
Methods inherited from class org.codehaus.janino.Java.Located
getLocation, throwCompileException
-
-
-
-
Field Detail
-
packageName
public final String[] packageName
The name of a package to be exported by this module, see JLS9 7.7.2.
-
-
Method Detail
-
accept
@Nullable public <R,EX extends Throwable> R accept(Visitor.ModuleDirectiveVisitor<R,EX> visitor) throws EX extends Throwable
Description copied from interface:Java.ModuleDirectiveInvokes the "visit...()" method ofVisitor.ModuleDirectiveVisitorfor the concreteJava.ModuleDirectivetype.- Specified by:
acceptin interfaceJava.ModuleDirective- Throws:
EX extends Throwable
-
-