public DesktopPaneUI getUI() { return (DesktopPaneUI) null; }
public void setUI(DesktopPaneUI ui) { super.setUI(ui); }
public void updateUI() { setUI((DesktopPaneUI) UIManager.getUI(this)); }
/** * This method restores the UI used with the JDesktopPane to the default. */ public void updateUI() { setUI((DesktopPaneUI) UIManager.getUI(this)); }
/** * Resets UI object with the default object from <code>UIManager</code> */ @Override public void updateUI() { setUI((DesktopPaneUI) UIManager.getUI(this)); }
/** * This method returns the UI used with the JDesktopPane. * * @return The UI used with the JDesktopPane. */ public DesktopPaneUI getUI() { return (DesktopPaneUI) ui; }
/** * This method sets the UI used with the JDesktopPane. * * @param ui The UI to use with the JDesktopPane. */ public void setUI(DesktopPaneUI ui) { super.setUI(ui); }
/** * Sets the UI object for this component. * * @param ui the UI object to set */ public void setUI(final DesktopPaneUI ui) { // setUI() from super (JComponent) should always be called super.setUI(ui); }
/** * Returns the UI object for this component. * * @return UI object for this component */ public DesktopPaneUI getUI() { return (DesktopPaneUI) ui; }