本文整理了Java中org.fujion.component.Label.isVisible()
方法的一些代码示例,展示了Label.isVisible()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Label.isVisible()
方法的具体详情如下:
包路径:org.fujion.component.Label
类名称:Label
方法名:isVisible
暂无
代码示例来源:origin: org.hspconsortium.carewebframework/cwf-plugin-patientheader
private void setLabel(Label label, String value, BaseUIComponent associatedComponent) {
label.setLabel(value);
label.setVisible(value != null && !value.isEmpty());
if (associatedComponent != null) {
associatedComponent.setVisible(label.isVisible());
}
}
代码示例来源:origin: org.carewebframework/org.carewebframework.help.core
/**
* Displays the specified message. The list box is hidden if the message is not empty.
*
* @param message Message to display.
*/
private void showMessage(String message) {
message = message == null ? null : StrUtil.getLabel(message);
lblNoResultsFound.setLabel(message);
lblNoResultsFound.setVisible(!StringUtils.isEmpty(message));
tblSrchResults.setVisible(!lblNoResultsFound.isVisible());
}
内容来源于网络,如有侵权,请联系作者删除!