/** Set the animated version of the icon */ public void setAnimated() { setDisplayConnectors(true); // m_visualLabel.setIcon(m_animatedIcon); }
/** * Turn on/off the connector points * * @param dc a <code>boolean</code> value * @param c the Color to use */ public void setDisplayConnectors(boolean dc, Color c) { setDisplayConnectors(dc); m_connectorColor = c; }
/** Set the static version of the icon */ public void setStatic() { setDisplayConnectors(false); // m_visualLabel.setIcon(m_icon); }