Package org.pentaho.reporting.designer.core.actions.global

Examples of org.pentaho.reporting.designer.core.actions.global.OpenRecentReportAction


        if (file.exists() == false)
        {
          continue;
        }

        final OpenRecentReportAction action = new OpenRecentReportAction(file);
        final ActionSwingMenuitem actionSwingMenuitem = xulDesignerFrame.createMenuItem(action);
        actionSwingMenuitem.setReportDesignerContext(context);
        reopenMenu.addChild(actionSwingMenuitem);
      }
      reopenMenu.addChild(new SwingMenuseparator(null, null, null, null));
View Full Code Here


          final File file = recentFiles[i];
          if (file.exists() == false)
          {
            continue;
          }
          final OpenRecentReportAction action = new OpenRecentReportAction(file);
          final ActionSwingMenuitem actionSwingMenuitem = xulDesignerFrame.createMenu(action);
          actionSwingMenuitem.setReportDesignerContext(context);
          reopenMenu.addChild(actionSwingMenuitem);
        }
        reopenMenu.addChild(new SwingMenuseparator(null, null, null, null));
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.designer.core.actions.global.OpenRecentReportAction

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.