📄 jre.java
字号:
/* launch4j :: Cross-platform Java application wrapper for creating Windows native executables Copyright (C) 2005 Grzegorz Kowal This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA*//* * Created on Apr 21, 2005 */package net.sf.launch4j.config;import net.sf.launch4j.binding.IValidatable;import net.sf.launch4j.binding.Validator;/** * @author Copyright (C) 2005 Grzegorz Kowal */public class Jre implements IValidatable { public static final String VERSION_PATTERN = "(\\d\\.){2}\\d(_\\d+)?"; public static final String PATH = "jrepath"; public static final String MIN_VERSION = "javamin"; public static final String MAX_VERSION = "javamax"; public static final String ARGS = "jvmArgs"; private String path; private String minVersion; private String maxVersion; private int initialHeapSize; private int maxHeapSize; private String args; public void checkInvariants() { Validator.checkOptString(minVersion, 10, VERSION_PATTERN, "jre.minVersion", "Minimum JRE version should be x.x.x[_xx]"); Validator.checkOptString(maxVersion, 10, VERSION_PATTERN, "jre.maxVersion", "Maximum JRE version should be x.x.x[_xx]"); if (Validator.isEmpty(path)) { Validator.checkFalse(Validator.isEmpty(minVersion), "jre.path", "Specify embedded JRE path or/and minimum JRE version."); } else { Validator.checkRelativeWinPath(path, "jre.path", "Embedded JRE path must be a path relative to the executable."); } if (!Validator.isEmpty(maxVersion)) { Validator.checkFalse(Validator.isEmpty(minVersion), "jre.minVersion", "Specify minimum JRE version."); Validator.checkTrue(minVersion.compareTo(maxVersion) <= 0, "jre.minVersion", "Minimum JRE version is greater than the maximum."); } Validator.checkTrue(initialHeapSize >= 0, "jre.initialHeapSize", "Initial heap size cannot be negative," + " specify 0 or leave the field blank to use the JVM default."); Validator.checkTrue(maxHeapSize == 0 || initialHeapSize <= maxHeapSize, "jre.maxHeapSize", "Maximum heap size cannot be less than the initial" + " size, specify 0 or leave the field blank to use the JVM default."); Validator.checkOptString(args, 512, "jre.args", "JVM arguments"); } /** JVM arguments: XOptions, system properties. */ public String getArgs() { return args; } public void setArgs(String args) { this.args = args; } /** Max Java version (x.x.x) */ public String getMaxVersion() { return maxVersion; } public void setMaxVersion(String maxVersion) { this.maxVersion = maxVersion; } /** Min Java version (x.x.x) */ public String getMinVersion() { return minVersion; } public void setMinVersion(String minVersion) { this.minVersion = minVersion; } /** JRE path */ public String getPath() { return path; } public void setPath(String path) { this.path = path; } /** Initial heap size in MB */ public int getInitialHeapSize() { return initialHeapSize; } public void setInitialHeapSize(int initialHeapSize) { this.initialHeapSize = initialHeapSize; } /** Max heap size in MB */ public int getMaxHeapSize() { return maxHeapSize; } public void setMaxHeapSize(int maxHeapSize) { this.maxHeapSize = maxHeapSize; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -