本文整理了Java中javax.swing.JToolBar.setToolTipText()
方法的一些代码示例,展示了JToolBar.setToolTipText()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JToolBar.setToolTipText()
方法的具体详情如下:
包路径:javax.swing.JToolBar
类名称:JToolBar
方法名:setToolTipText
暂无
代码示例来源:origin: magefree/mage
tbColor.setToolTipText("Hold the ALT-key while clicking to deselect all other colors or hold the CTRL-key to select only all other colors.");
tbColor.setBorderPainted(false);
tbColor.setName(""); // NOI18N
tbTypes.setToolTipText("Hold the ALT-key while clicking to deselect all other card types or hold the CTRL-key to only select all other card types."); // NOI18N
tbTypes.setPreferredSize(new java.awt.Dimension(732, 27));
tbRarities.setToolTipText("Hold the ALT-key while clicking to deselect all other card rarities or hold the CTRL-key to only select all other card rarities.");
代码示例来源:origin: com.eas.platypus/platypus-js-forms
@ScriptFunction
@Override
public void setToolTipText(String aValue) {
super.setToolTipText(aValue);
}
代码示例来源:origin: com.eas.platypus/platypus-js-forms
@ScriptFunction
@Override
public void setToolTipText(String text) {
super.setToolTipText(text);
gapLabel.setToolTipText(text);
iconLabel.setToolTipText(text);
decorated.setToolTipText(text);
extraTools.setToolTipText(text);
}
内容来源于网络,如有侵权,请联系作者删除!