< prev index next >

src/java.base/share/classes/jdk/internal/module/SystemModulesMap.java

Print this page
rev 47483 : [mq]: XXXXXXX-double-trouble-2


  42     static SystemModules allSystemModules() {
  43         return null;
  44     }
  45 
  46     /**
  47      * Returns the SystemModules object to reconstitute default modules or null
  48      * if this is an exploded build.
  49      */
  50     static SystemModules defaultSystemModules() {
  51         return null;
  52     }
  53 
  54     /**
  55      * Returns the array of initial module names identified at link time.
  56      */
  57     static String[] moduleNames() {
  58         return new String[0];
  59     }
  60 
  61     /**
  62      * Returns the array of of SystemModules class names. The elements
  63      * correspond to the elements in the array returned by moduleNames().
  64      */
  65     static String[] classNames() {
  66         return new String[0];
  67     }
  68 }


  42     static SystemModules allSystemModules() {
  43         return null;
  44     }
  45 
  46     /**
  47      * Returns the SystemModules object to reconstitute default modules or null
  48      * if this is an exploded build.
  49      */
  50     static SystemModules defaultSystemModules() {
  51         return null;
  52     }
  53 
  54     /**
  55      * Returns the array of initial module names identified at link time.
  56      */
  57     static String[] moduleNames() {
  58         return new String[0];
  59     }
  60 
  61     /**
  62      * Returns the array of SystemModules class names. The elements
  63      * correspond to the elements in the array returned by moduleNames().
  64      */
  65     static String[] classNames() {
  66         return new String[0];
  67     }
  68 }
< prev index next >