< prev index next >

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

Print this page




  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  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 jdk.jpackage.internal;
  27 
  28 import java.util.Map;
  29 import java.util.function.BiFunction;
  30 import java.util.function.Function;
  31 


  32 /**
  33  * BundlerParamInfo<T>
  34  *
  35  * A BundlerParamInfo encapsulates an individual bundler parameter of type <T>.
  36  */
  37 class BundlerParamInfo<T> {
  38     /**
  39      * The user friendly name of the parameter
  40      */
  41     String name;
  42 
  43     /**
  44      * A more verbose description of the parameter
  45      */
  46     String description;
  47 
  48     /**
  49      * The command line and hashmap name of the parameter
  50      */
  51     String id;
  52 
  53     /**
  54      * Type of the parameter
  55      */
  56     Class<T> valueType;
  57 
  58     /**
  59      * Indicates if value was set using default value function
  60      */
  61     boolean isDefaultValue;
  62 
  63     /**
  64      * If the value is not set, and no fallback value is found,
  65      * the parameter uses the value returned by the producer.
  66      */
  67     Function<Map<String, ? super Object>, T> defaultValueFunction;
  68 
  69     /**
  70      * An optional string converter for command line arguments.
  71      */
  72     BiFunction<String, Map<String, ? super Object>, T> stringConverter;
  73 
  74     String getName() {
  75         return name;
  76     }
  77 
  78     void setName(String name) {
  79         this.name = name;
  80     }
  81 
  82     String getDescription() {
  83         return description;
  84     }
  85 
  86     void setDescription(String description) {
  87         this.description = description;
  88     }
  89 
  90     String getID() {
  91         return id;
  92     }
  93 
  94     Class<T> getValueType() {
  95         return valueType;
  96     }
  97 
  98     void setValueType(Class<T> valueType) {
  99         this.valueType = valueType;
 100     }
 101 
 102     boolean getIsDefaultValue() {
 103         return isDefaultValue;
 104     }
 105 
 106     Function<Map<String, ? super Object>, T> getDefaultValueFunction() {
 107         return defaultValueFunction;
 108     }




  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  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 jdk.jpackage.internal;
  27 
  28 import java.util.Map;
  29 import java.util.function.BiFunction;
  30 import java.util.function.Function;
  31 
  32 import static jdk.jpackage.internal.StandardBundlerParam.*;
  33 
  34 /**
  35  * BundlerParamInfo<T>
  36  *
  37  * A BundlerParamInfo encapsulates an individual bundler parameter of type <T>.
  38  */
  39 class BundlerParamInfo<T> {









  40 
  41     /**
  42      * The command line and hashmap name of the parameter
  43      */
  44     String id;
  45 
  46     /**
  47      * Type of the parameter
  48      */
  49     Class<T> valueType;
  50 
  51     /**
  52      * Indicates if value was set using default value function
  53      */
  54     boolean isDefaultValue;
  55 
  56     /**
  57      * If the value is not set, and no fallback value is found,
  58      * the parameter uses the value returned by the producer.
  59      */
  60     Function<Map<String, ? super Object>, T> defaultValueFunction;
  61 
  62     /**
  63      * An optional string converter for command line arguments.
  64      */
  65     BiFunction<String, Map<String, ? super Object>, T> stringConverter;
















  66 
  67     String getID() {
  68         return id;
  69     }
  70 
  71     Class<T> getValueType() {
  72         return valueType;
  73     }
  74 
  75     void setValueType(Class<T> valueType) {
  76         this.valueType = valueType;
  77     }
  78 
  79     boolean getIsDefaultValue() {
  80         return isDefaultValue;
  81     }
  82 
  83     Function<Map<String, ? super Object>, T> getDefaultValueFunction() {
  84         return defaultValueFunction;
  85     }


< prev index next >