本文整理了Java中org.fujion.component.Label.setHint()
方法的一些代码示例,展示了Label.setHint()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Label.setHint()
方法的具体详情如下:
包路径:org.fujion.component.Label
类名称:Label
方法名:setHint
暂无
代码示例来源:origin: org.hspconsortium.carewebframework/cwf-ui-reporting
/**
* Add a row containing the specified header (left column) and value (right column). If
* log.isDebugEnabled() is false then don't add row for empty or null values
*
* @param header Text for header column
* @param value Text for value column
*/
protected void addRow(String header, String value) {
if ((value == null || value.length() == 0) && !debug) {
return;
}
Label lbl = new Label();
lbl.setLabel(value);
lbl.setHint(value);
addRow(header, lbl);
}
代码示例来源:origin: org.carewebframework/org.carewebframework.ui.sharedforms
protected void status(String message) {
if (message != null) {
grid.setVisible(false);
status.setLabel(StrUtil.piece(message, "^"));
status.setHint(StrUtil.piece(message, "^", 2, 999));
status.setVisible(true);
} else {
status.setVisible(false);
status.setLabel(null);
status.setHint(null);
grid.setVisible(true);
}
}
内容来源于网络,如有侵权,请联系作者删除!