Examples of resetChangeTracker()


Examples of org.pentaho.reporting.designer.core.editor.ReportDocumentContext.resetChangeTracker()

        context.getRecentFilesModel().addFile(selectedFile);

        final ReportDocumentContext activeContext = context.getActiveContext();
        if (activeContext != null)
        {
          activeContext.resetChangeTracker();
        }
      }
      catch (ReportDataFactoryException e)
      {
        UncaughtExceptionsModel.getInstance().addException(e);
View Full Code Here

Examples of org.pentaho.reporting.designer.core.editor.ReportRenderContext.resetChangeTracker()

    masterReportElement.setDataFactory(CompoundDataFactory.normalize(masterReportElement.getDataFactory()));
    final ReportRenderContext context =
        new ReportRenderContext(masterReportElement, masterReportElement, null, getGlobalAuthenticationStore());
    contexts.add(context);
    context.resetChangeTracker();

    masterReportElement.addReportModelListener(new SubReportsRemovealHandler(this));

    final int index = contexts.size() - 1;
    propertyChangeSupport.fireIndexedPropertyChange(REPORT_RENDER_CONTEXT_PROPERTY, index, null, context);
View Full Code Here

Examples of org.pentaho.reporting.designer.core.editor.ReportRenderContext.resetChangeTracker()

    masterReportElement.setDataFactory(CompoundDataFactory.normalize(masterReportElement.getDataFactory()));
    final ReportRenderContext context =
        new ReportRenderContext(masterReportElement, masterReportElement, null, getGlobalAuthenticationStore());
    contexts.add(context);
    context.resetChangeTracker();

    masterReportElement.addReportModelListener(new SubReportsRemovealHandler(this));

    final int index = contexts.size() - 1;
    propertyChangeSupport.fireIndexedPropertyChange(REPORT_RENDER_CONTEXT_PROPERTY, index, null, context);
View Full Code Here

Examples of org.pentaho.reporting.designer.core.editor.ReportRenderContext.resetChangeTracker()

        context.getRecentFilesModel().addFile(selectedFile);

        final ReportRenderContext theReportRenderContext = context.getActiveContext();
        if (theReportRenderContext != null)
        {
          theReportRenderContext.resetChangeTracker();
        }
      }
      catch (ReportDataFactoryException e)
      {
        UncaughtExceptionsModel.getInstance().addException(e);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.