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

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


      final Object child = model.getChild(currentLevel, i);
      if (model.isLeaf(child))
      {
        final DefaultMutableTreeNode node = (DefaultMutableTreeNode) child;
        final File file = new File(String.valueOf(node.getUserObject()));
        final OpenSampleReportAction action = new OpenSampleReportAction(file, node.toString());
        action.setReportDesignerContext(context);
        popup.addChild(frame.createMenuItem(action));
      }
      else
      {
        final XulMenupopup childPopup = frame.createPopupMenu(String.valueOf(child), popup);
View Full Code Here

TOP

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

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.