Example usage for com.google.gwt.user.client.ui FocusListenerCollection FocusListenerCollection

List of usage examples for com.google.gwt.user.client.ui FocusListenerCollection FocusListenerCollection

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui FocusListenerCollection FocusListenerCollection.

Prototype

FocusListenerCollection

Source Link

Usage

From source file:com.apress.progwt.client.college.gui.ext.FocusPanelExt.java

License:Apache License

public void addFocusListener(FocusListener listener) {
    if (focusListeners == null) {
        focusListeners = new FocusListenerCollection();
    }/*w w w .  ja  v a2 s.c  om*/
    focusListeners.add(listener);
}