Class EffectAdapter
- java.lang.Object
-
- com.googlecode.wicket.jquery.ui.effect.EffectAdapter
-
- All Implemented Interfaces:
IEffectListener,Serializable,org.apache.wicket.util.io.IClusterable
public class EffectAdapter extends Object implements IEffectListener
Adapter class forIEffectListener- Author:
- Sebastien Briquet - sebfz1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EffectAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisCallbackEnabled()Indicates whether the callback should be triggered when the effect completes.
If true, theIEffectListener.onEffectComplete(AjaxRequestTarget)event will be triggered.voidonEffectComplete(org.apache.wicket.ajax.AjaxRequestTarget target)Triggered when the effects is completed
-
-
-
Method Detail
-
isCallbackEnabled
public boolean isCallbackEnabled()
Description copied from interface:IEffectListenerIndicates whether the callback should be triggered when the effect completes.
If true, theIEffectListener.onEffectComplete(AjaxRequestTarget)event will be triggered.- Specified by:
isCallbackEnabledin interfaceIEffectListener- Returns:
- false by default
-
onEffectComplete
public void onEffectComplete(org.apache.wicket.ajax.AjaxRequestTarget target)
Description copied from interface:IEffectListenerTriggered when the effects is completed- Specified by:
onEffectCompletein interfaceIEffectListener- Parameters:
target- theAjaxRequestTarget- See Also:
IEffectListener.isCallbackEnabled()
-
-