--- old/modules/jdk.packager/src/main/java/com/sun/javafx/tools/packager/DeployParams.java 2017-07-05 12:50:43.000000000 -0700 +++ new/modules/jdk.packager/src/main/java/com/sun/javafx/tools/packager/DeployParams.java 2017-07-05 12:50:43.000000000 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -68,6 +68,7 @@ Boolean serviceHint; Boolean signBundle; Boolean installdirChooser; + Boolean singleton; String applicationClass; String preloader; @@ -180,6 +181,10 @@ this.installdirChooser = installdirChooser; } + public void setSingleton(Boolean singleton) { + this.singleton = singleton; + } + public void setSignBundle(Boolean signBundle) { this.signBundle = signBundle; } @@ -686,6 +691,7 @@ bundleParams.setSystemWide(systemWide); bundleParams.setServiceHint(serviceHint); bundleParams.setInstalldirChooser(installdirChooser); + bundleParams.setSingleton(singleton); bundleParams.setSignBundle(signBundle); bundleParams.setCopyright(copyright); bundleParams.setApplicationCategory(category);