Class RowEventAdapter
- java.lang.Object
-
- org.eclipse.birt.report.engine.api.script.eventadapter.RowEventAdapter
-
- All Implemented Interfaces:
IRowEventHandler
public class RowEventAdapter extends java.lang.Object implements IRowEventHandler
Default (empty) implementation of the ITableDetailRowEventHandler interface
-
-
Constructor Summary
Constructors Constructor Description RowEventAdapter()
-
Method Summary
All Methods Instance Methods Concrete 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
public void onPrepare(IRow rowHandle, IReportContext reportContext) throws ScriptException
Description copied from interface:IRowEventHandler
Handle the onPrepare event- Specified by:
onPrepare
in interfaceIRowEventHandler
- Throws:
ScriptException
-
onCreate
public void onCreate(IRowInstance rowInstance, IReportContext reportContext) throws ScriptException
Description copied from interface:IRowEventHandler
Handle the onCreate event- Specified by:
onCreate
in interfaceIRowEventHandler
- Throws:
ScriptException
-
onRender
public void onRender(IRowInstance rowInstance, IReportContext reportContext) throws ScriptException
Description copied from interface:IRowEventHandler
Handle the onRender event- Specified by:
onRender
in interfaceIRowEventHandler
- Throws:
ScriptException
-
onPageBreak
public void onPageBreak(IRowInstance rowInstance, IReportContext reportContext) throws ScriptException
Description copied from interface:IRowEventHandler
Handle the onPageBreak event- Specified by:
onPageBreak
in interfaceIRowEventHandler
- Throws:
ScriptException
-
-