Package charva.awt.event

Examples of charva.awt.event.FocusListener


    public void processFocusEvent(FocusEvent fe_) {
  if (_focusListeners != null) {
      for (Enumeration<FocusListener> e = _focusListeners.elements();
        e.hasMoreElements(); ) {

    FocusListener fl = (FocusListener) e.nextElement();
    if (fe_.getID() == AWTEvent.FOCUS_GAINED)
        fl.focusGained(fe_);
    else
        fl.focusLost(fe_);
      }
  }
    }
View Full Code Here

TOP

Related Classes of charva.awt.event.FocusListener

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.