Package org.pentaho.reporting.designer.core.inspections

Examples of org.pentaho.reporting.designer.core.inspections.InspectionsMessageDialog


        reportDesignerContext.setStatusText(ActionMessages.getString("ValidateReportAction.ValidationRunNoResults"));
      }
      else
      {
        final Window window = LibSwingUtil.getWindowAncestor(reportDesignerContext.getView().getParent());
        final InspectionsMessageDialog dialog;
        if (window instanceof JDialog)
        {
          dialog = new InspectionsMessageDialog((JDialog) window);
        }
        else if (window instanceof JFrame)
        {
          dialog = new InspectionsMessageDialog((JFrame) window);
        }
        else
        {
          dialog = new InspectionsMessageDialog();
        }

        dialog.performShowResult(reportDesignerContext, collector.toArray());
      }
    }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.designer.core.inspections.InspectionsMessageDialog

Copyright © 2018 www.massapicom. 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.