本文整理了Java中org.weasis.core.api.service.WProperties.setProperty()
方法的一些代码示例,展示了WProperties.setProperty()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WProperties.setProperty()
方法的具体详情如下:
包路径:org.weasis.core.api.service.WProperties
类名称:WProperties
方法名:setProperty
暂无
代码示例来源:origin: nroduit/Weasis
public static void setProperty(WProperties properties, String key, Preferences prefNode, String defaultValue) {
if (properties != null && key != null) {
String val = prefNode.get(key, null);
if (val == null) {
val = properties.getProperty(key, defaultValue);
}
properties.setProperty(key, val);
}
}
}
代码示例来源:origin: nroduit/Weasis
BundleTools.SYSTEM_PREFERENCES.setProperty(AuditLog.LOG_STACKTRACE_LIMIT,
StringUtil.hasText(limit) ? limit : "-1"); //$NON-NLS-1$
BundleTools.SYSTEM_PREFERENCES.setProperty(AuditLog.LOG_LEVEL, level.toString());
BundleTools.SYSTEM_PREFERENCES.setProperty(AuditLog.LOG_FILE_ACTIVATION,
String.valueOf(chckbxFileLog.isSelected()));
String logFile =
chckbxFileLog.isSelected() ? AppProperties.WEASIS_PATH + File.separator + "log" + File.separator //$NON-NLS-1$
+ "default.log" : ""; //$NON-NLS-1$ //$NON-NLS-2$
BundleTools.SYSTEM_PREFERENCES.setProperty(AuditLog.LOG_FILE, logFile);
String fileNb = null;
String fileSize = null;
fileNb = spinner.getValue().toString();
fileSize = spinner1.getValue().toString() + "MB"; //$NON-NLS-1$
BundleTools.SYSTEM_PREFERENCES.setProperty(AuditLog.LOG_FILE_NUMBER, fileNb);
BundleTools.SYSTEM_PREFERENCES.setProperty(AuditLog.LOG_FILE_SIZE, fileSize);
代码示例来源:origin: nroduit/Weasis
BundleTools.LOCAL_PERSISTENCE.setProperty("last.open.dicom.dir", selectedFiles[0].getParent()); //$NON-NLS-1$
代码示例来源:origin: nroduit/Weasis
Messages.getString("OpenImageAction.open_img"), JOptionPane.WARNING_MESSAGE); //$NON-NLS-1$
BundleTools.LOCAL_PERSISTENCE.setProperty("last.open.image.dir", selectedFiles[0].getParent()); //$NON-NLS-1$
代码示例来源:origin: nroduit/Weasis
WProperties.setProperty(options, WindowOp.P_APPLY_WL_COLOR, prefNode, Boolean.TRUE.toString());
WProperties.setProperty(options, WindowOp.P_INVERSE_LEVEL, prefNode, Boolean.TRUE.toString());
WProperties.setProperty(options, PRManager.PR_APPLY, prefNode, Boolean.FALSE.toString());
内容来源于网络,如有侵权,请联系作者删除!