com.maryanovsky.gwtutils.client.event
Interface ReadyListener<T>

All Superinterfaces:
EventListener
All Known Implementing Classes:
DelegatingReadyListenerCollection, GroupReadyListener

public interface ReadyListener<T>
extends EventListener

A listener which is notified when an entity changes between ready and unready states.

Author:
Maryanovsky Alexander

Method Summary
 void becameReady(T source)
          Invoked when the entity becomes ready.
 void becameUnready(T source)
          Invoked when the entity becomes unready.
 

Method Detail

becameReady

void becameReady(T source)
Invoked when the entity becomes ready.


becameUnready

void becameUnready(T source)
Invoked when the entity becomes unready.