< prev index next >

src/jdk.incubator.jpackage/share/classes/jdk/incubator/jpackage/internal/Bundlers.java

Print this page

        

*** 21,31 **** * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package jdk.jpackage.internal; import java.util.Collection; import java.util.Iterator; import java.util.ServiceLoader; --- 21,31 ---- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package jdk.incubator.jpackage.internal; import java.util.Collection; import java.util.Iterator; import java.util.ServiceLoader;
*** 99,143 **** * @return a read-only collection of the requested bundlers */ Collection<Bundler> getBundlers(String type); /** - * Loads the bundlers common to the JDK. A typical implementation - * would load: - * <UL> - * <LI>Windows file image</LI> - * <LI>Mac .app</LI> - * <LI>Linux file image</LI> - - * <LI>Windows MSI</LI> - * <LI>Windows EXE</LI> - * <LI>Mac DMG</LI> - * <LI>Mac PKG</LI> - * <LI>Linux DEB</LI> - * <LI>Linux RPM</LI> - * - * </UL> - * - * This method is called from the - * {@link #createBundlersInstance(ClassLoader)} - * and {@link #createBundlersInstance()} methods. - * NOTE: Because of the module system this method is now not used. - */ - void loadDefaultBundlers(); - - /** * Loads bundlers from the META-INF/services directly. * * This method is called from the * {@link #createBundlersInstance(ClassLoader)} * and {@link #createBundlersInstance()} methods. */ void loadBundlersFromServices(ClassLoader cl); - /** - * Loads a specific bundler into the set of bundlers. - * Useful for a manually configured bundler. - * - * @param bundler the specific bundler to add - */ - void loadBundler(Bundler bundler); } --- 99,112 ----
< prev index next >