test/hotspot/jtreg/runtime/appcds/AppCDSOptions.java
changeset 55524 b279ae9843b8
parent 52631 3009ca99de32
equal deleted inserted replaced
55523:52ef2c940423 55524:b279ae9843b8
    26 // This class represents options used for
    26 // This class represents options used for
    27 // during creation of the archive and/or running JVM with archive
    27 // during creation of the archive and/or running JVM with archive
    28 
    28 
    29 public class AppCDSOptions extends CDSOptions {
    29 public class AppCDSOptions extends CDSOptions {
    30     public String appJar;
    30     public String appJar;
       
    31     public String appJarDir;
    31 
    32 
    32     public AppCDSOptions setAppJar(String appJar) {
    33     public AppCDSOptions setAppJar(String appJar) {
    33         this.appJar = appJar;
    34         this.appJar = appJar;
    34         return this;
    35         return this;
    35     }
    36     }
       
    37 
       
    38     public AppCDSOptions setAppJarDir(String appJarDir) {
       
    39         this.appJarDir = appJarDir;
       
    40         return this;
       
    41     }
    36 }
    42 }