Interface IListEventHandler
-
- All Known Implementing Classes:
ListEventAdapter
public interface IListEventHandler
Script event handler interface for a list
-
-
Method Summary
All Methods Instance Methods Abstract 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
void onPrepare(IList listHandle, IReportContext reportContext) throws ScriptException
Handle the onPrepare event- Throws:
ScriptException
-
onCreate
void onCreate(IListInstance list, IReportContext reportContext) throws ScriptException
Handle the onCreate event- Throws:
ScriptException
-
onRender
void onRender(IListInstance list, IReportContext reportContext) throws ScriptException
Handle the onRender event- Throws:
ScriptException
-
onPageBreak
void onPageBreak(IListInstance list, IReportContext reportContext) throws ScriptException
Handle the onPageBreak event- Throws:
ScriptException
-
-