Examples of LHSTreeSection


Examples of org.jboss.ballroom.client.layout.LHSTreeSection

        stack.add(selectorWidget);

        navigation = new LHSNavTree("profiles");
        navigation.getElement().setAttribute("aria-label", "Profile Tasks");

        subsystemLeaf = new LHSTreeSection(Console.CONSTANTS.common_label_subsystems());
        navigation.addItem(subsystemLeaf);

        // --------

        commonLeaf = new LHSTreeSection(Console.CONSTANTS.common_label_generalConfig());
        navigation.addItem(commonLeaf);

        LHSNavTreeItem interfaces = new LHSNavTreeItem(Console.CONSTANTS.common_label_interfaces(), NameTokens.InterfacePresenter);
        LHSNavTreeItem sockets = new LHSNavTreeItem(Console.CONSTANTS.common_label_socketBinding(), NameTokens.SocketBindingPresenter);
        LHSNavTreeItem paths = new LHSNavTreeItem(Console.CONSTANTS.common_label_paths(), NameTokens.PathManagementPresenter);
View Full Code Here

Examples of org.jboss.ballroom.client.layout.LHSTreeSection

        stack.add(hostSelector.asWidget());

        navigation = new LHSNavTree("hosts");
        navigation.getElement().setAttribute("aria-label", "Profile Tasks");

        LHSTreeSection patchLeaf = new LHSTreeSection("Patching");
        patchLeaf.addItem(new LHSNavTreeItem("Patch Management", NameTokens.PatchingPresenter));
        navigation.addItem(patchLeaf);

        LHSTreeSection serverLeaf = new LHSTreeSection("Server");
        navigation.addItem(serverLeaf);

        LHSNavTreeItem serversItem = new LHSNavTreeItem(Console.CONSTANTS.common_label_serverConfigs(), NameTokens.ServerPresenter);
        //LHSNavTreeItem paths = new LHSNavTreeItem(Console.CONSTANTS.common_label_paths(), "hosts/host-paths");
        LHSNavTreeItem jvms = new LHSNavTreeItem(Console.CONSTANTS.common_label_virtualMachines(), "host-jvms");
        LHSNavTreeItem interfaces = new LHSNavTreeItem(Console.CONSTANTS.common_label_interfaces(), "host-interfaces");
        LHSNavTreeItem properties = new LHSNavTreeItem("Host Properties", "host-properties");

        serverLeaf.addItem(serversItem);


        LHSNavTreeItem groupItem = new LHSNavTreeItem("Server Groups", NameTokens.ServerGroupPresenter);
        serverLeaf.addItem(groupItem);


        LHSTreeSection hostsLeaf = new LHSTreeSection("Host Settings");
        navigation.addItem(hostsLeaf);
        hostsLeaf.addItem(jvms);
        hostsLeaf.addItem(interfaces);
        hostsLeaf.addItem(properties);


        stack.add(navigation);
        navigation.expandTopLevel();
        // --------
View Full Code Here

Examples of org.jboss.ballroom.client.layout.LHSTreeSection

        stack.setStyleName("fill-layout-width");

        navigation = new LHSNavTree("domain-overview");
        navigation.getElement().setAttribute("aria-label", "Domain Tasks");

        LHSTreeSection domainLeaf = new LHSTreeSection("Domain");
        domainLeaf.addItem(new LHSNavTreeItem("Topology", NameTokens.Topology));
        domainLeaf.addItem(new LHSNavTreeItem("Manage Deployments", NameTokens.DeploymentsPresenter));

        navigation.addItem(domainLeaf);
        navigation.expandTopLevel();
        stack.add(navigation);
        layout.add(stack);
View Full Code Here

Examples of org.jboss.ballroom.client.layout.LHSTreeSection

    private VerticalPanel layout;
    private LHSNavTree navigation;

    public LHSAdministrationNavigation() {

        LHSTreeSection accessLeaf = new LHSTreeSection("Access Control", true);
        LHSNavTreeItem authItem = new LHSNavTreeItem("Role Assignment", NameTokens.RoleAssignmentPresenter);
        accessLeaf.addItem(authItem);
//        LHSNavTreeItem auditLogItem = new LHSNavTreeItem("Audit Log", NameTokens.AuditLogPresenter);
//        accessLeaf.addItem(auditLogItem);

        navigation = new LHSNavTree("administration");
        navigation.getElement().setAttribute("aria-label", "Administration");
View Full Code Here

Examples of org.jboss.ballroom.client.layout.LHSTreeSection


        LHSNavTree navigation = new LHSNavTree("profiles");
        navigation.getElement().setAttribute("aria-label", "Profile Tasks");

        subsysTree = new LHSTreeSection(Console.CONSTANTS.common_label_subsystems());
        navigation.addItem(subsysTree);

        layout = new VerticalPanel();
        layout.setStyleName("fill-layout-width");
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.