Package org.eobjects.datacleaner.widgets.tabs

Examples of org.eobjects.datacleaner.widgets.tabs.CloseableTabbedPane.addTab()


      @Override
      protected JComponent getDialogContent() {
        final AnalyzerBeanDescriptor<ExcelOutputAnalyzer> descriptor = excelOutputAnalyzerBuilder.getDescriptor();
        final CloseableTabbedPane tabbedPane = new CloseableTabbedPane();
        tabbedPane.addTab(descriptor.getDisplayName(),
            IconUtils.getDescriptorIcon(descriptor, IconUtils.ICON_SIZE_LARGE), presenter.createJComponent());
        tabbedPane.setUnclosableTab(0);
        return tabbedPane;
      }
View Full Code Here


      @Override
      protected JComponent getDialogContent() {
        final AnalyzerBeanDescriptor<CsvOutputAnalyzer> descriptor = csvOutputAnalyzerBuilder.getDescriptor();
        final CloseableTabbedPane tabbedPane = new CloseableTabbedPane();
        tabbedPane.addTab(descriptor.getDisplayName(),
            IconUtils.getDescriptorIcon(descriptor, IconUtils.ICON_SIZE_LARGE), presenter.createJComponent());
        tabbedPane.setUnclosableTab(0);
        return tabbedPane;
      }
View Full Code Here

  @Override
  protected JComponent getDialogContent() {
    CloseableTabbedPane tabbedPane = new CloseableTabbedPane();

    tabbedPane.addTab("About DataCleaner",
        imageManager.getImageIcon("images/window/app-icon.png", IconUtils.ICON_SIZE_LARGE), getAboutPanel(),
        "About DataCleaner");
    tabbedPane.setUnclosableTab(0);

    tabbedPane.addTab("Licensing", imageManager.getImageIcon("images/menu/license.png"), getLicensingPanel(),
View Full Code Here

    tabbedPane.addTab("About DataCleaner",
        imageManager.getImageIcon("images/window/app-icon.png", IconUtils.ICON_SIZE_LARGE), getAboutPanel(),
        "About DataCleaner");
    tabbedPane.setUnclosableTab(0);

    tabbedPane.addTab("Licensing", imageManager.getImageIcon("images/menu/license.png"), getLicensingPanel(),
        "Licensing");
    tabbedPane.setUnclosableTab(1);

    tabbedPane.setPreferredSize(new Dimension(getDialogWidth(), 500));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.