Java Code Examples for javax.swing.JRadioButton#getDisabledIcon()

The following examples show how to use javax.swing.JRadioButton#getDisabledIcon() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: JExtendedRadioButton.java    From netbeans with Apache License 2.0 5 votes vote down vote up
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);
}
 
Example 2
Source File: JExtendedRadioButton.java    From visualvm with GNU General Public License v2.0 5 votes vote down vote up
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);
}