/** * Sets the L&F object that renders this component. * * @param ui the <code>FontChooserUI</code> L&F object * @beaninfo bound: true hidden: true description: The UI object that implements the font * chooser's LookAndFeel. * @see javax.swing.UIDefaults#getUI */ public void setUI(FontChooserUI ui) { super.setUI(ui); }
/** * Sets the L&F object that renders this component. * * @param ui the <code>ScrollBarUI</code> L&F object * @see UIDefaults#getUI * @since 1.4 * @beaninfo bound: true hidden: true attribute: visualUpdate true description: The UI object that * implements the Component's LookAndFeel */ public void setUI(ScrollBarUI ui) { super.setUI(ui); }
public void setUI(OptionPaneUI ui) { super.setUI(ui); }
/** * Sets the UI object which implements the L&F for this component. * * @param ui the SliderUI L&F object * @see UIDefaults#getUI * @beaninfo bound: true hidden: true attribute: visualUpdate true description: The UI object that * implements the slider's LookAndFeel. */ public void setUI(SliderUI ui) { super.setUI(ui); }
/** * Sets the L&F object that renders this component. * * @param ui the <code>LabelUI</code> L&F object * @see UIDefaults#getUI * @beaninfo bound: true hidden: true expert: true attribute: visualUpdate true description: The * UI object that implements the Component's LookAndFeel. * @since 1.3 */ public void setUI(RootPaneUI ui) { super.setUI(ui); }
/** * Sets the UI delegate for this component. * * @param ui the new UI delegate. */ public void setUI(ProgressBarUI ui) { super.setUI(ui); }
/** * This method sets the UI used with the JToolBar. * * @param ui The UI used with the JToolBar. */ public void setUI(ToolBarUI ui) { super.setUI(ui); } // setUI()
/** * This method sets the label's UI delegate. * * @param ui The label's UI delegate. */ public void setUI(LabelUI ui) { super.setUI(ui); }
/** * Sets the L&F object that renders this component. * * @param ui the new <code>PopupMenuUI</code> L&F object * @see UIDefaults#getUI * @beaninfo bound: true hidden: true attribute: visualUpdate true description: The UI object that * implements the Component's LookAndFeel. */ public void setUI(PopupMenuUI ui) { super.setUI(ui); }
/** * This method sets the UI used by the JSplitPane. * * @param ui The UI to use. */ public void setUI(SplitPaneUI ui) { super.setUI(ui); }