Package org.pentaho.reporting.designer.core.util

Examples of org.pentaho.reporting.designer.core.util.AboutDialog


  {
    final Component parent = getReportDesignerContext().getView().getParent();
    final Window window = LibSwingUtil.getWindowAncestor(parent);
    if (window instanceof JDialog)
    {
      new AboutDialog((JDialog) window);
    }
    else if (window instanceof JFrame)
    {
      new AboutDialog((JFrame) window);
    }
    else
    {
      new AboutDialog();
    }

    if (e instanceof ConsumableActionEvent)
    {
      final ConsumableActionEvent ce = (ConsumableActionEvent) e;
View Full Code Here


  {
    final Component parent = getReportDesignerContext().getParent();
    final Window window = SwingUtil.getWindowAncestor(parent);
    if (window instanceof JDialog)
    {
      new AboutDialog((JDialog) window);
    }
    else if (window instanceof JFrame)
    {
      new AboutDialog((JFrame) window);
    }
    else
    {
      new AboutDialog();
    }

    if (e instanceof ConsumableActionEvent)
    {
      final ConsumableActionEvent ce = (ConsumableActionEvent) e;
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.designer.core.util.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.