public ToolTipUI getUI() { return null; }
/** * This method resets the UI used to the Look and Feel default. */ public void updateUI() { setUI((ToolTipUI) UIManager.getUI(this)); }
public ToolTipUI getUI() { return (ToolTipUI)ui; }
public void updateUI() { setUI((ToolTipUI)UIManager.getUI(this)); }
@Override public void updateUI() { setUI(new ToolTipUI() {}); }
/** * Returns the current UI delegate for this component. * * @return The UI delegate. */ public ToolTipUI getUI() { return (ToolTipUI) ui; }