setDisabledSelectedIcon(icon);
}
}
private Icon _getRolloverIcon() {
Icon icon = null;
icon = arrowIcons.get(mouseInArrowArea ? ICON_ROLLOVER : ICON_ROLLOVER_LINE);
if (null == icon) {
Icon orig = regIcons.get(ICON_ROLLOVER);
if (null == orig) {
orig = regIcons.get(ICON_NORMAL);
}
icon = new IconWithArrow(orig, !mouseInArrowArea);
arrowIcons.put(mouseInArrowArea ? ICON_ROLLOVER : ICON_ROLLOVER_LINE, icon);