Package ejmf.toolkit.controls

Examples of ejmf.toolkit.controls.MouseListenerControl


     * @param          c
     *                 An AbstractButton
     * @see    java.awt.swing.AbstractButton
     **/
    public void setFastForwardButton(AbstractButton c) {
  MouseListenerControl control =
      (MouseListenerControl) getControl(StandardControls.FF_CONTROL);
  replaceControlComponent(control.getControlComponent(), c);
  control.setComponent(c);
    }
View Full Code Here


     * @param l A MouseListener that implements button semantics.
     * @see    java.awt.swing.AbstractButton
     * @see    java.awt.event.MouseListener
     **/
    public void setFastForwardButton(AbstractButton c, MouseListener l) {
  MouseListenerControl control =
      (MouseListenerControl) getControl(StandardControls.FF_CONTROL);
  replaceControlComponent(control.getControlComponent(), c);
  control.setComponentAndListener(c, l);
    }
View Full Code Here

     * @param          c
     *                 An AbstractButton
     * @see    java.awt.swing.AbstractButton
     **/
    public void setReverseButton(AbstractButton c) {
  MouseListenerControl control =
      (MouseListenerControl)getControl(StandardControls.REVERSE_CONTROL);
  replaceControlComponent(control.getControlComponent(), c);
  control.setComponent(c);
    }
View Full Code Here

     * @param l A MouseListener that implements button semantics.
     * @see    java.awt.swing.AbstractButton
     * @see    java.awt.event.MouseListener
     **/
    public void setReverseButton(AbstractButton c, MouseListener l) {
  MouseListenerControl control =
      (MouseListenerControl)getControl(StandardControls.REVERSE_CONTROL);
  replaceControlComponent(control.getControlComponent(), c);
  control.setComponent(c);
    }
View Full Code Here

TOP

Related Classes of ejmf.toolkit.controls.MouseListenerControl

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.