Exemplo n.º 1
0
 /**
  * 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);
 }
Exemplo n.º 2
0
 /**
  * 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);
 }
Exemplo n.º 3
0
 public void setUI(OptionPaneUI ui) {
   super.setUI(ui);
 }
Exemplo n.º 4
0
 /**
  * Sets the UI object which implements the L&amp;F for this component.
  *
  * @param ui the SliderUI L&amp;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);
 }
Exemplo n.º 5
0
 /**
  * Sets the L&amp;F object that renders this component.
  *
  * @param ui the <code>LabelUI</code> L&amp;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);
 }
Exemplo n.º 6
0
 /**
  * Sets the UI delegate for this component.
  *
  * @param ui the new UI delegate.
  */
 public void setUI(ProgressBarUI ui) {
   super.setUI(ui);
 }
Exemplo n.º 7
0
 /**
  * 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()
Exemplo n.º 8
0
 /**
  * This method sets the label's UI delegate.
  *
  * @param ui The label's UI delegate.
  */
 public void setUI(LabelUI ui) {
   super.setUI(ui);
 }
Exemplo n.º 9
0
 /**
  * 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);
 }
Exemplo n.º 10
0
 /**
  * This method sets the UI used by the JSplitPane.
  *
  * @param ui The UI to use.
  */
 public void setUI(SplitPaneUI ui) {
   super.setUI(ui);
 }