Package org.eurekastreams.web.client.ui.pages.profile.settings.stream

Examples of org.eurekastreams.web.client.ui.pages.profile.settings.stream.StreamPluginsSettingsTabContent


        TabContainerPanel portalPage = new TabContainerPanel();

        GroupProfileSettingsTabContent profileTabContent = new GroupProfileSettingsTabContent(groupName);
        profileTabContent.addStyleName(StaticResourceBundle.INSTANCE.coreCss().profileSettingsTabContent());

        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();
View Full Code Here


     */
    public PersonalStreamSettingsTabContent()
    {
        this.add(panel);
        this.addStyleName(StaticResourceBundle.INSTANCE.coreCss().streamSettingsTabContent());
      content = new StreamPluginsSettingsTabContent(PersonStreamPluginSubscriptionModel.getInstance());

        final FlowPanel pluginsContainer = new FlowPanel();
        panel.add(pluginsContainer);
        pluginsContainer.add(content);

View Full Code Here

TOP

Related Classes of org.eurekastreams.web.client.ui.pages.profile.settings.stream.StreamPluginsSettingsTabContent

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.