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

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


  }

  public static JPopupMenu createDataSourcePopup(final ReportDesignerContext designerContext)
  {
    final JPopupMenu insertDataSourcesMenu = new JPopupMenu();
    final PasteAction action = new PasteAction();
    action.setReportDesignerContext(designerContext);
    insertDataSourcesMenu.add(action);
    insertDataSourcesMenu.addSeparator();
    createDataSourceMenu(designerContext, insertDataSourcesMenu);
    return insertDataSourcesMenu;
  }
View Full Code Here


  public StructureTreePanel(final AbstractReportTree.RenderType renderType)
  {
    cutAction = new CutAction();
    copyAction = new CopyAction();
    pasteAction = new PasteAction();

    if (renderType == AbstractReportTree.RenderType.REPORT)
    {
      tree = new LayoutReportTree();
    }
View Full Code Here

  public StructureTreePanel(final ReportTree.RENDER_TYPE renderType)
  {
    cutAction = new CutAction();
    copyAction = new CopyAction();
    pasteAction = new PasteAction();

    tree = new ReportTree(renderType);
    tree.getSelectionModel().addTreeSelectionListener(new TreeLeadSelectionListener());
    tree.addMouseListener(new ReportTreeContextMenuHandler());
View Full Code Here

  }

  public static JPopupMenu createDataSourcePopup(final ReportDesignerContext designerContext)
  {
    final JPopupMenu insertDataSourcesMenu = new JPopupMenu();
    final PasteAction action = new PasteAction();
    action.setReportDesignerContext(designerContext);
    insertDataSourcesMenu.add(action);
    insertDataSourcesMenu.addSeparator();
    createDataSourceMenu(designerContext, insertDataSourcesMenu);
    return insertDataSourcesMenu;
  }
View Full Code Here

TOP

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

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.