org.spiffyui.client
Interface JSEffectCallback


public interface JSEffectCallback

The JSEffectCallback is used in conjunction with long running JavaScript effect functions from JSUtil.

Many JavaScript effects are long running and program control will return to the calling code before the effect is complete. This callback gives the calling code the option to respond to the completion of the effect.


Method Summary
 void effectComplete(java.lang.String id)
          Called when the effect is completed.
 

Method Detail

effectComplete

void effectComplete(java.lang.String id)
Called when the effect is completed.

Parameters:
id - the id of the element the effect was called on