Class ListEventAdapter
- java.lang.Object
-
- org.eclipse.birt.report.engine.api.script.eventadapter.ListEventAdapter
-
- All Implemented Interfaces:
IListEventHandler
public class ListEventAdapter extends java.lang.Object implements IListEventHandler
Default (empty) implementation of the IListEventHandler interface
-
-
Constructor Summary
Constructors Constructor Description ListEventAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onCreate(IListInstance list, IReportContext reportContext)
Handle the onCreate eventvoid
onPageBreak(IListInstance list, IReportContext reportContext)
Handle the onPageBreak eventvoid
onPrepare(IList listHandle, IReportContext reportContext)
Handle the onPrepare eventvoid
onRender(IListInstance list, IReportContext reportContext)
Handle the onRender event
-
-
-
Method Detail
-
onPrepare
public void onPrepare(IList listHandle, IReportContext reportContext) throws ScriptException
Description copied from interface:IListEventHandler
Handle the onPrepare event- Specified by:
onPrepare
in interfaceIListEventHandler
- Throws:
ScriptException
-
onCreate
public void onCreate(IListInstance list, IReportContext reportContext) throws ScriptException
Description copied from interface:IListEventHandler
Handle the onCreate event- Specified by:
onCreate
in interfaceIListEventHandler
- Throws:
ScriptException
-
onRender
public void onRender(IListInstance list, IReportContext reportContext) throws ScriptException
Description copied from interface:IListEventHandler
Handle the onRender event- Specified by:
onRender
in interfaceIListEventHandler
- Throws:
ScriptException
-
onPageBreak
public void onPageBreak(IListInstance list, IReportContext reportContext) throws ScriptException
Description copied from interface:IListEventHandler
Handle the onPageBreak event- Specified by:
onPageBreak
in interfaceIListEventHandler
- Throws:
ScriptException
-
-