示例#1
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);
 }
示例#2
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);
 }