< prev index next >

test/tools/launcher/modules/patch/systemmodules/src1/java.base/jdk/internal/modules/SystemModules.java

Print this page




  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 package jdk.internal.module;
  25 
  26 /*
  27  * Test --patch-module java.base=jdk/modules/java.base to override
  28  * java.base with an exploded image
  29  */
  30 public final class SystemModules {
  31     public static final String[] MODULE_NAMES = new String[0];
  32 


  33     public static boolean hasSplitPackages() {
  34         return true;
  35     }
  36 }


  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 package jdk.internal.module;
  25 
  26 /*
  27  * Test --patch-module java.base=jdk/modules/java.base to override
  28  * java.base with an exploded image
  29  */
  30 public final class SystemModules {
  31     public static final String[] MODULE_NAMES = new String[0];
  32 
  33     public static int PACKAGES_IN_BOOT_LAYER = 1024;
  34 
  35     public static boolean hasSplitPackages() {
  36         return true;
  37     }
  38 }
< prev index next >