Package org.jfree.report.modules.gui.swing.preview.about

Examples of org.jfree.report.modules.gui.swing.preview.about.AboutDialog


      final String title = getDisplayName();
      // look where we have been added ...
      Window w = SwingUtil.getWindowAncestor(reportPane);
      if (w instanceof Frame)
      {
        aboutFrame = new AboutDialog
                ((Frame) w, title, JFreeReportInfo.getInstance());
      }
      else if (w instanceof Dialog)
      {
        aboutFrame = new AboutDialog
                ((Dialog) w, title, JFreeReportInfo.getInstance());
      }
      else
      {
        aboutFrame = new AboutDialog
                (title, JFreeReportInfo.getInstance());
      }
      aboutFrame.pack();
      SwingUtil.centerFrameOnScreen(aboutFrame);
    }
View Full Code Here

TOP

Related Classes of org.jfree.report.modules.gui.swing.preview.about.AboutDialog

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.