public TabInfo setAlertIcon(final AlertIcon alertIcon) { AlertIcon old = myAlertIcon; myAlertIcon = alertIcon; myChangeSupport.firePropertyChange(ALERT_ICON, old, myAlertIcon); return this; }
public AlertIcon getAlertIcon() { return myAlertIcon == null ? DEFAULT_ALERT_ICON : myAlertIcon; }
@Override @Nullable public AlertIcon getAlertIcon() { return myAlertIcon; }
@Override public void setAlertIcon(@Nullable final AlertIcon icon) { myAlertIcon = icon; }