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