Class ModuleLayer.Controller

java.lang.Object
java.lang.ModuleLayer.Controller
Enclosing class:
ModuleLayer

public static final classModuleLayer.ControllerextendsObject
Controls a module layer. The static methods defined byModuleLayer to create module layers return aController that can be used to control modules in the layer.

Unless otherwise specified, passing anull argument to a method in this class causes aNullPointerException to be thrown.

API Note:
Care should be taken withController objects, they should never be shared with untrusted code.
Since:
9
  • Method Details

    • layer

      public ModuleLayer layer()
      Returns the layer that this object controls.
      Returns:
      the module layer
    • addReads

      public ModuleLayer.Controller addReads(Module source,Module target)
      Updates modulesource in the layer to read moduletarget. This method is a no-op ifsource already readstarget.
      Implementation Note:
      Read edges added by this method areweak and do not preventtarget from being GC'ed whensource is strongly reachable.
      Parameters:
      source - The source module
      target - The target module to read
      Returns:
      This controller
      Throws:
      IllegalArgumentException - Ifsource is not in the module layer
      See Also:
    • addExports

      public ModuleLayer.Controller addExports(Module source,String pn,Module target)
      Updates modulesource in the layer to export a package to moduletarget. This method is a no-op ifsource already exports the package to at leasttarget.
      Parameters:
      source - The source module
      pn - The package name
      target - The target module
      Returns:
      This controller
      Throws:
      IllegalArgumentException - Ifsource is not in the module layer or the package is not in the source module
      See Also:
    • addOpens

      public ModuleLayer.Controller addOpens(Module source,String pn,Module target)
      Updates modulesource in the layer to open a package to moduletarget. This method is a no-op ifsource already opens the package to at leasttarget.
      Parameters:
      source - The source module
      pn - The package name
      target - The target module
      Returns:
      This controller
      Throws:
      IllegalArgumentException - Ifsource is not in the module layer or the package is not in the source module
      See Also:
    • enableNativeAccess

      public ModuleLayer.Controller enableNativeAccess(Module target)
      enableNativeAccess is arestricted method of the Java platform.
      Programs can only useenableNativeAccess when access to restricted methods is enabled.
      Restricted methods are unsafe, and, if used incorrectly, might crash the JVM or result in memory corruption.
      Enables native access for a module in the layer if the caller's module has native access.
      Parameters:
      target - The module to update
      Returns:
      This controller
      Throws:
      IllegalArgumentException - Iftarget is not in the module layer
      IllegalCallerException - If the caller is in a module that does not have native access enabled
      Since:
      22