Package ejmf.toolkit.controls

Examples of ejmf.toolkit.controls.StandardGainControl$SetStateThread


     * Set the control component for gain Control
     * @param c an AbstractGainButtonPanel
     * @see ejmf.toolkit.gui.controls.AbstractGainButtonPanel
     */
    public void setGainButtonPanel(AbstractGainButtonPanel c) {
  StandardGainControl control =
      (StandardGainControl)getControl(StandardControls.GAIN_CONTROL);

  replaceControlComponent(control.getControlComponent(), c);
  control.setComponent(c);
    }
View Full Code Here


     * @param c an AbstractGainButtonPanel
     * @param l An ActionListener that implements Control semantics.
     */
    public void setGainButtonPanel(AbstractGainButtonPanel c,
           ActionListener l) {
  StandardGainControl control =
      (StandardGainControl)getControl(StandardControls.GAIN_CONTROL);

  replaceControlComponent(control.getControlComponent(), c);
  control.setComponentAndListener(c, l);
    }
View Full Code Here

    * Subclasses should over-ride this to customize the
    * the gain increase/decrease control.
  * @return AbstractListenerControl for gain control operation
    */
  protected AbstractListenerControl createGainControl() {
    return new StandardGainControl();
  }
View Full Code Here

TOP

Related Classes of ejmf.toolkit.controls.StandardGainControl$SetStateThread

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.