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