< prev index next >

src/jdk.jpackage/share/classes/jdk/jpackage/internal/BundlerParamInfo.java

Print this page

        

@@ -33,19 +33,10 @@
  * BundlerParamInfo<T>
  *
  * A BundlerParamInfo encapsulates an individual bundler parameter of type <T>.
  */
 class BundlerParamInfo<T> {
-    /**
-     * The user friendly name of the parameter
-     */
-    String name;
-
-    /**
-     * A more verbose description of the parameter
-     */
-    String description;
 
     /**
      * The command line and hashmap name of the parameter
      */
     String id;

@@ -69,26 +60,10 @@
     /**
      * An optional string converter for command line arguments.
      */
     BiFunction<String, Map<String, ? super Object>, T> stringConverter;
 
-    String getName() {
-        return name;
-    }
-
-    void setName(String name) {
-        this.name = name;
-    }
-
-    String getDescription() {
-        return description;
-    }
-
-    void setDescription(String description) {
-        this.description = description;
-    }
-
     String getID() {
         return id;
     }
 
     Class<T> getValueType() {
< prev index next >