Interface IRowEventHandler
-
- All Known Implementing Classes:
RowEventAdapter
public interface IRowEventHandler
Script event handler interface for a detail row
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onCreate(IRowInstance rowInstance, IReportContext reportContext)
Handle the onCreate eventvoid
onPageBreak(IRowInstance rowInstance, IReportContext reportContext)
Handle the onPageBreak eventvoid
onPrepare(IRow rowHandle, IReportContext reportContext)
Handle the onPrepare eventvoid
onRender(IRowInstance rowInstance, IReportContext reportContext)
Handle the onRender event
-
-
-
Method Detail
-
onPrepare
void onPrepare(IRow rowHandle, IReportContext reportContext) throws ScriptException
Handle the onPrepare event- Throws:
ScriptException
-
onCreate
void onCreate(IRowInstance rowInstance, IReportContext reportContext) throws ScriptException
Handle the onCreate event- Throws:
ScriptException
-
onRender
void onRender(IRowInstance rowInstance, IReportContext reportContext) throws ScriptException
Handle the onRender event- Throws:
ScriptException
-
onPageBreak
void onPageBreak(IRowInstance rowInstance, IReportContext reportContext) throws ScriptException
Handle the onPageBreak event- Throws:
ScriptException
-
-