Package org.fusesource.ide.commons.ui.views

Examples of org.fusesource.ide.commons.ui.views.PropertiesPageTabDescriptor


  @Override
  protected ITabDescriptor[] getTabDescriptors() {
    final List<IPropertySource> propertySourceList = node.getAllProcessorsPropertySourceList();
    return new ITabDescriptor[] {
        new PropertiesPageTabDescriptor(node),
        new ProcessorsPageTabDescriptor("Processors", propertySourceList),
        new ProcessorCallViewTabDescriptor("Profile", node),
    };
  }
View Full Code Here


  @Override
  protected ITabDescriptor[] getTabDescriptors() {
    return new ITabDescriptor[] {
        new FabricStatusTabDescriptor("Status", node),
        new PropertiesPageTabDescriptor(node)
    };
  }
View Full Code Here

  }

  @Override
  protected ITabDescriptor[] getTabDescriptors() {
    return new ITabDescriptor[] {
        new PropertiesPageTabDescriptor(node),
        new NodesTabDescriptor("Nodes", node)
    };
  }
View Full Code Here

  @Override
  protected ITabDescriptor[] getTabDescriptors() {
    return new ITabDescriptor[] {
        new ProfileDetailsFormTabDescriptor("Details", node),
        new ProfileContainersTabDescriptor("Containers", node),
        new PropertiesPageTabDescriptor(node),
        new ProfileRequirementsFormTabDescriptor("Requirements", node)
    };
  }
View Full Code Here

  }

  @Override
  protected ITabDescriptor[] getTabDescriptors() {
    return new ITabDescriptor[] {
        new PropertiesPageTabDescriptor(node),
        new ProfileTreeTabDescriptor("Profiles", node),
        new ProfilesTabDescriptor("Profile Details", node)
    };
  }
View Full Code Here

TOP

Related Classes of org.fusesource.ide.commons.ui.views.PropertiesPageTabDescriptor

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.