Examples of addTab()


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

Examples of org.eurekastreams.server.domain.Person.addTab()

        Tab tab = new Tab(tabName, Layout.THREECOLUMN);

        Person person = personMapper.findByAccountId(inActionContext.getPrincipal().getAccountId());

        person.addTab(tab, TabGroupType.START);

        // because the caller relies on tabIndex being set properly, we have to
        // flush, then clear the entity manager so we can reget the updated
        // Tab's new tabIndex
        personMapper.flush();
View Full Code Here

Examples of org.eurekastreams.server.domain.TabGroup.addTab()

                gadget.setMinimized(gadgetDTO.isMinimized());
                gadgets.add(gadget);
            }

            tab.setGadgets(gadgets);
            startTabGroup.addTab(tab);
        }

        person.setStartTabGroup(startTabGroup);

        return person;
View Full Code Here

Examples of org.eurekastreams.web.client.ui.common.tabs.TabContainerPanel.addTab()

        StreamPluginsSettingsTabContent streamSettingsTabContent = new StreamPluginsSettingsTabContent(
                GroupStreamPluginSubscriptionModel.getInstance());
        streamSettingsTabContent.addStyleName(StaticResourceBundle.INSTANCE.coreCss().profileSettingsTabContent());

        portalPage.addTab(new SimpleTab("Basic Info", profileTabContent));
        portalPage.addTab(new SimpleTab("Stream Plugins", streamSettingsTabContent));
        portalPage.init();

        portalPageContainer.add(portalPage);
        portalPageContainer.addStyleName(StaticResourceBundle.INSTANCE.coreCss().profileSettingsTabContainer());
View Full Code Here

Examples of org.gwtoolbox.widget.client.panel.layout.tab.TabLayout.addTab()

        SplitLayout split = new SplitLayout();
        split.addNorth(createHTML("Top content", "#ffcccc"), 200);

        TabLayout tabs = new TabLayout();
        tabs.addTab("Tab 1", createHTML("Tab Content", "white"));
        split.add(tabs);
        LayoutUtils.fitParent(tabs);
       
        drawers.setContent(split);
        LayoutUtils.fitParent(split);
View Full Code Here

Examples of org.gwtoolbox.widget.client.panel.tab.SimpleTabPanel.addTab()

    public SimpleTabPanelSamplePane() {

        final SimpleTabPanel panel = new SimpleTabPanel(true);

        panel.addTab(new TabSpec("tab1", "Tab 1", null, new Label("Tab 1 content"), true));

        ScrollPanel content2 = new ScrollPanel(createContent(createVeryLongText(), "#CCFFCC"));
        content2.setSize("100%", "100%");
        panel.addTab("Tab 2", content2);
View Full Code Here

Examples of org.jitterbit.ui.widget.tabbedpane.KongaTabbedPane.addTab()

    }

    @Override
    public void addSection(String title, Icon icon, UiProvider ui) {
        KongaTabbedPane tabs = getTabs();
        tabs.addTab(title, icon, ui);
    }

    @Override
    public void setDebugUi(ScriptTestUi debugUi) {
        KongaTabbedPane tabs = getTabs();
View Full Code Here

Examples of org.lazan.t5.stitch.model.TabGroupModel.addTab()

  boolean beforeRenderBody(MarkupWriter writer) {
    TabGroupModel tabModel = (TabGroupModel) request.getAttribute(TabGroup.ATTRIBUTE_MODEL);
    if (tabModel == null) {
      throw new IllegalStateException("Tab must be nested inside a TabGroup");
    }
    tabModel.addTab(name, label, resources.getBody());
   
    // don't render the body, it will be rendered by the TabGroup
    return false;
  }
}
View Full Code Here

Examples of org.onemind.swingweb.client.gwt.widget.TabContainer.addTab()

            for (int i = 0; i < tabs.size(); i++)
            {
                DomNode tabNode = (DomNode) tabs.get(i);
                String label = tabNode.getAttribute("label");
                String selected = tabNode.getAttribute("selected");
                tabCon.addTab(label);
                if ("true".equalsIgnoreCase(selected))
                {
                    tabCon.setActiveTab(i);
                }
            }
View Full Code Here

Examples of org.rhq.coregui.client.components.tab.NamedTabSet.addTab()

        conditionsTab.setPane(getConditionsForAlert(record));

        Tab notificationsTab = new NamedTab(new ViewName("notifications", MSG.view_alert_common_tab_notifications()));
        notificationsTab.setPane(getNotificationsForAlert(record));

        tabset.addTab(generalTab);
        tabset.addTab(conditionsTab);
        tabset.addTab(notificationsTab);

        return tabset;
    }
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.