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