Interface IDynamicTextEventHandler
-
- All Known Implementing Classes:
DynamicTextEventAdapter
public interface IDynamicTextEventHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onCreate(IDynamicTextInstance text, IReportContext reportContext)
Handle the onCreate eventvoid
onPageBreak(IDynamicTextInstance text, IReportContext reportContext)
Handle the onPageBreak eventvoid
onPrepare(IDynamicText textData, IReportContext reportContext)
Handle the onPrepare eventvoid
onRender(IDynamicTextInstance text, IReportContext reportContext)
Handle the onRender event
-
-
-
Method Detail
-
onPrepare
void onPrepare(IDynamicText textData, IReportContext reportContext) throws ScriptException
Handle the onPrepare event- Throws:
ScriptException
-
onCreate
void onCreate(IDynamicTextInstance text, IReportContext reportContext) throws ScriptException
Handle the onCreate event- Throws:
ScriptException
-
onRender
void onRender(IDynamicTextInstance text, IReportContext reportContext) throws ScriptException
Handle the onRender event- Throws:
ScriptException
-
onPageBreak
void onPageBreak(IDynamicTextInstance text, IReportContext reportContext) throws ScriptException
Handle the onPageBreak event- Throws:
ScriptException
-
-