Class GridEventAdapter
- java.lang.Object
-
- org.eclipse.birt.report.engine.api.script.eventadapter.GridEventAdapter
-
- All Implemented Interfaces:
IGridEventHandler
public class GridEventAdapter extends java.lang.Object implements IGridEventHandler
Default (empty) implementation of the IGridEventHandler interface
-
-
Constructor Summary
Constructors Constructor Description GridEventAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onCreate(IGridInstance grid, IReportContext reportContext)
Handle the onCreate eventvoid
onPageBreak(IGridInstance grid, IReportContext reportContext)
Handle the onPageBreak eventvoid
onPrepare(IGrid grid, IReportContext reportContext)
Handle the onPrepare eventvoid
onRender(IGridInstance grid, IReportContext reportContext)
Handle the onRender event
-
-
-
Method Detail
-
onPrepare
public void onPrepare(IGrid grid, IReportContext reportContext) throws ScriptException
Description copied from interface:IGridEventHandler
Handle the onPrepare event- Specified by:
onPrepare
in interfaceIGridEventHandler
- Throws:
ScriptException
-
onCreate
public void onCreate(IGridInstance grid, IReportContext reportContext) throws ScriptException
Description copied from interface:IGridEventHandler
Handle the onCreate event- Specified by:
onCreate
in interfaceIGridEventHandler
- Throws:
ScriptException
-
onRender
public void onRender(IGridInstance grid, IReportContext reportContext) throws ScriptException
Description copied from interface:IGridEventHandler
Handle the onRender event- Specified by:
onRender
in interfaceIGridEventHandler
- Throws:
ScriptException
-
onPageBreak
public void onPageBreak(IGridInstance grid, IReportContext reportContext) throws ScriptException
Description copied from interface:IGridEventHandler
Handle the onPageBreak event- Specified by:
onPageBreak
in interfaceIGridEventHandler
- Throws:
ScriptException
-
-