com.extjs.gxt.ui.client.event
Class LoadListener

java.lang.Object
  extended by com.extjs.gxt.ui.client.event.LoadListener
All Implemented Interfaces:
Listener<LoadEvent>, java.util.EventListener

public class LoadListener
extends java.lang.Object
implements Listener<LoadEvent>

Listener for Loader events.


Constructor Summary
LoadListener()
           
 
Method Summary
 void handleEvent(LoadEvent e)
          Sent when an event that the listener has registered for occurs.
 void loaderBeforeLoad(LoadEvent le)
          Fires before a load operation begins.
 void loaderLoad(LoadEvent le)
          Fires after a load operation completes.
 void loaderLoadException(LoadEvent le)
          Fires when an exception occurs during a load operation.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LoadListener

public LoadListener()
Method Detail

handleEvent

public void handleEvent(LoadEvent e)
Description copied from interface: Listener
Sent when an event that the listener has registered for occurs.

Specified by:
handleEvent in interface Listener<LoadEvent>
Parameters:
e - the event which occurred

loaderBeforeLoad

public void loaderBeforeLoad(LoadEvent le)
Fires before a load operation begins. Action can be cancelled by calling BaseEvent.setCancelled(boolean).

Parameters:
le - the load event

loaderLoadException

public void loaderLoadException(LoadEvent le)
Fires when an exception occurs during a load operation.

Parameters:
le - the load event

loaderLoad

public void loaderLoad(LoadEvent le)
Fires after a load operation completes.

Parameters:
le - the load event