javax.swing.JRadioButton#getDisabledIcon ( )源码实例Demo

下面列出了javax.swing.JRadioButton#getDisabledIcon ( ) 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: netbeans   文件: JExtendedRadioButton.java
private static Icon getDisabledIconSafe(JRadioButton radio) {
    Icon icon = radio.getIcon();

    if (icon == null) {
        return getDefaultIcon();
    }

    Icon disabledIcon = radio.getDisabledIcon();

    return (disabledIcon != null) ? disabledIcon : getIconSafe(radio);
}
 
源代码2 项目: visualvm   文件: JExtendedRadioButton.java
private static Icon getDisabledIconSafe(JRadioButton radio) {
    Icon icon = radio.getIcon();

    if (icon == null) {
        return getDefaultIcon();
    }

    Icon disabledIcon = radio.getDisabledIcon();

    return (disabledIcon != null) ? disabledIcon : getIconSafe(radio);
}