Package net.sf.fmj.ejmf.toolkit.gui.controls

Examples of net.sf.fmj.ejmf.toolkit.gui.controls.ChangeListenerControl


     * @param          c
     *                 A ProgressBar
     * @see    net.sf.fmj.ejmf.toolkit.gui.controls.ProgressBar
     **/
    public void setProgressSlider(ProgressSlider c) {
  ChangeListenerControl control =
      (ChangeListenerControl)getControl(StandardControls.PROGRESS_CONTROL);
  replaceControlComponent(control.getControlComponent(), c);
  control.setComponent(c);
    }
View Full Code Here


     * @param          c
     *                 A ProgressBar
     * @see    net.sf.fmj.ejmf.toolkit.gui.controls.skins.ejmf.ProgressSlider
     **/
    public void setProgressSlider(ProgressSlider c, ChangeListener l) {
  ChangeListenerControl control =
      (ChangeListenerControl)getControl(StandardControls.PROGRESS_CONTROL);
  replaceControlComponent(control.getControlComponent(), c);
  control.setComponentAndListener(c, l);
    }
View Full Code Here

TOP

Related Classes of net.sf.fmj.ejmf.toolkit.gui.controls.ChangeListenerControl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.