Interface ICellEventHandler
-
- All Known Implementing Classes:
CellEventAdapter
public interface ICellEventHandler
Script event handler interface for a cell
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onCreate(ICellInstance cellInstance, IReportContext reportContext)
Handle the onCreate eventvoid
onPageBreak(ICellInstance cellInstance, IReportContext reportContext)
Handle the onPageBreak eventvoid
onPrepare(ICell cell, IReportContext reportContext)
Handle the onPrepare eventvoid
onRender(ICellInstance cellInstance, IReportContext reportContext)
Handle the onRender event
-
-
-
Method Detail
-
onPrepare
void onPrepare(ICell cell, IReportContext reportContext) throws ScriptException
Handle the onPrepare event- Throws:
ScriptException
-
onCreate
void onCreate(ICellInstance cellInstance, IReportContext reportContext) throws ScriptException
Handle the onCreate event- Throws:
ScriptException
-
onRender
void onRender(ICellInstance cellInstance, IReportContext reportContext) throws ScriptException
Handle the onRender event- Throws:
ScriptException
-
onPageBreak
void onPageBreak(ICellInstance cellInstance, IReportContext reportContext) throws ScriptException
Handle the onPageBreak event- Throws:
ScriptException
-
-