< prev index next >

src/jdk.jlink/share/classes/jdk/tools/jlink/plugin/ResourcePoolEntry.java

Print this page

        

*** 39,48 **** --- 39,49 ---- * <br> * A ResourcePoolEntry is identified by a path of the form: * <ul> * <li>For jimage content: /{module name}/{package1}/.../{packageN}/{file * name}</li> + * <li>For top-level files:/{module name}/{file name}</li> * <li>For other files (shared lib, launchers, config, ...):/{module name}/ * {@literal bin|conf|native}/{dir1}/.../{dirN}/{file name}</li> * </ul> */ public interface ResourcePoolEntry {
*** 52,69 **** --- 53,72 ---- * <li> * <ul>CLASS_OR_RESOURCE: A java class or resource file.</ul> * <ul>CONFIG: A configuration file.</ul> * <ul>NATIVE_CMD: A native process launcher.</ul> * <ul>NATIVE_LIB: A native library.</ul> + * <ul>TOP: A top-level file in the jdk run-time image directory.</ul> * <ul>OTHER: Other kind of file.</ul> * </li> */ public enum Type { CLASS_OR_RESOURCE, CONFIG, NATIVE_CMD, NATIVE_LIB, + TOP, OTHER } /** * The module name of this ResourcePoolEntry.
< prev index next >