Package org.pentaho.reporting.designer.core.xul

Examples of org.pentaho.reporting.designer.core.xul.ActionSwingMenuitem


        {
          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


          firstElement = false;
        }
       
        final InsertElementAction action = new InsertElementAction(data);
        action.setReportDesignerContext(context);
        ActionSwingMenuitem menuItem = new ActionSwingMenuitem(ActionSwingMenuitem.MENUITEM);
        menuItem.setAction(action);
        insertElementsMenu.addChild(menuItem);
      }
    }
  }
View Full Code Here

        else
        {
          tabName = tabbedPane.getTitleAt(i);
        }
        final SelectTabAction action = new SelectTabAction(i, tabName);
        final ActionSwingMenuitem actionSwingMenuitem = context.getView().createMenuItem(action);
        actionSwingMenuitem.setReportDesignerContext(context);
        reopenMenu.addChild(actionSwingMenuitem);
      }
    }
  }
View Full Code Here

        else
        {
          tabName = tabbedPane.getTitleAt(i);
        }
        final SelectTabAction action = new SelectTabAction(i, tabName);
        final ActionSwingMenuitem actionSwingMenuitem = xulDesignerFrame.createMenu(action);
        actionSwingMenuitem.setReportDesignerContext(context);
        reopenMenu.addChild(actionSwingMenuitem);
      }
    }
  }
View Full Code Here

          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.xul.ActionSwingMenuitem

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.