public static void handleOnPrepare(AutoTextHandle autoTextHandle, ExecutionContext context) { try { IAutoText cell = new AutoText(autoTextHandle); IAutoTextEventHandler eh = getEventHandler(autoTextHandle, context); if (eh != null) eh.onPrepare(cell, context.getReportContext()); } catch (Exception e) { addException(context, e); } }
public static void handleOnPageBreak(IAutoTextContent content, ExecutionContext context) { Object generateBy = content.getGenerateBy(); if (generateBy == null) { return; } ReportItemDesign autoTextDesign = (ReportItemDesign) generateBy; try { if (!needOnPageBreak(autoTextDesign)) { return; } // fromGrid doesn't matter here since row data is null IAutoTextInstance autoText = new AutoTextInstance(content, context, RunningState.PAGEBREAK); if (handleScript(autoText, autoTextDesign.getOnPageBreak(), context).didRun()) return; IAutoTextEventHandler eh = getEventHandler(autoTextDesign, context); if (eh != null) eh.onPageBreak(autoText, context.getReportContext()); } catch (Exception e) { addException(context, e, autoTextDesign.getHandle()); } }
public static void handleOnCreate(IAutoTextContent content, ExecutionContext context) { Object generateBy = content.getGenerateBy(); if (generateBy == null) { return; } ReportItemDesign autoTextItemDesign = (ReportItemDesign) generateBy; try { if (!needOnCreate(autoTextItemDesign)) { return; } IAutoTextInstance autoText = new AutoTextInstance(content, context, RunningState.CREATE); if (handleScript(autoText, autoTextItemDesign.getOnCreate(), context).didRun()) return; IAutoTextEventHandler eh = getEventHandler(autoTextItemDesign, context); if (eh != null) eh.onCreate(autoText, context.getReportContext()); } catch (Exception e) { addException(context, e, autoTextItemDesign.getHandle()); } }