< prev index next >

modules/jdk.packager/src/main/java/com/sun/javafx/tools/packager/CreateBSSParams.java

Print this page




  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.javafx.tools.packager;
  27 
  28 import com.sun.javafx.tools.resource.PackagerResource;
  29 
  30 import java.io.File;
  31 import java.util.ArrayList;
  32 import java.util.List;
  33 

  34 public class CreateBSSParams extends CommonParams {
  35     final List<PackagerResource> resources = new ArrayList<PackagerResource>();
  36 
  37     @Override
  38     public void addResource(File baseDir, String path) {
  39         resources.add(new PackagerResource(baseDir, path));
  40     }
  41 
  42     @Override
  43     public void addResource(File baseDir, File file) {
  44         resources.add(new PackagerResource(baseDir, file));
  45     }
  46 
  47     @Override
  48     public void validate() throws PackagerException {
  49         if (outdir == null) {
  50             throw new PackagerException("ERR_MissingArgument", "-outdir");
  51         }
  52     }
  53 }


  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.javafx.tools.packager;
  27 
  28 import com.sun.javafx.tools.resource.PackagerResource;
  29 
  30 import java.io.File;
  31 import java.util.ArrayList;
  32 import java.util.List;
  33 
  34 @Deprecated
  35 public class CreateBSSParams extends CommonParams {
  36     final List<PackagerResource> resources = new ArrayList<PackagerResource>();
  37 
  38     @Override
  39     public void addResource(File baseDir, String path) {
  40         resources.add(new PackagerResource(baseDir, path));
  41     }
  42 
  43     @Override
  44     public void addResource(File baseDir, File file) {
  45         resources.add(new PackagerResource(baseDir, file));
  46     }
  47 
  48     @Override
  49     public void validate() throws PackagerException {
  50         if (outdir == null) {
  51             throw new PackagerException("ERR_MissingArgument", "-outdir");
  52         }
  53     }
  54 }
< prev index next >