Examples of LHSNavItem


Examples of org.jboss.as.console.client.widgets.LHSNavItem

        LayoutPanel commonLayout = new LayoutPanel();
        commonLayout.setStyleName("stack-section");

        LHSNavItem[] commonItems = new LHSNavItem[] {
                new LHSNavItem("Browser", "debug/model-browser"),
                new LHSNavItem("Invocation Metrics", "debug/invocation-metrics")
                //new LHSNavItem("Operations", "debug/model-operations"),
        };

        int i =0;
        for(LHSNavItem item : commonItems)
View Full Code Here

Examples of org.jboss.as.console.client.widgets.LHSNavItem

        LayoutPanel dplLayout = new LayoutPanel();
        dplLayout.setStyleName("stack-section");

        LHSNavItem[] dplItems = new LHSNavItem[] {
                new LHSNavItem("Web Applications", "server-deployments;type=web"),
                new LHSNavItem("Enterprise Applications", "server-deployments;type=ee"),
                new LHSNavItem("Resource Adapters", "server-deployments;type=jca"),
                new LHSNavItem("Other", "server-deployments;type=other")
        };

        int i =0;
        for(LHSNavItem item : dplItems)
        {
            dplLayout.add(item);
            dplLayout.setWidgetTopHeight(item, i, Style.Unit.PX, 25, Style.Unit.PX);
            i+=25;
        }

        //stack.add(dplLayout, new StackSectionHeader("Deployments"), 28);

                      
        // ----------------------------------------------------

        LayoutPanel commonLayout = new LayoutPanel();
         commonLayout.setStyleName("stack-section");

        LHSNavItem[] commonItems = new LHSNavItem[] {
                new LHSNavItem("Paths", "server/server-paths"),
                new LHSNavItem("Interfaces", "server/server-interfaces"),
                new LHSNavItem("Socket Binding Groups", "server/server-sockets"),
                new LHSNavItem("System Properties", "server/server-properties")
        };

        i =0;
        for(LHSNavItem item : commonItems)
        {
View Full Code Here

Examples of org.jboss.as.console.client.widgets.LHSNavItem

        // ----------------------------------------------------

        LayoutPanel dplLayout = new LayoutPanel();
        dplLayout.setStyleName("stack-section");

        LHSNavItem current = new LHSNavItem(
                "Available Deployments",
                NameTokens.DeploymentListPresenter,
                Icons.INSTANCE.inventory_small()
        );

        LHSNavItem createNew = new LHSNavItem(
                "Add Deployment",
                "current-deployments;action=new",
                Icons.INSTANCE.add_small()
        );
View Full Code Here

Examples of org.jboss.as.console.client.widgets.LHSNavItem

class CommonConfigSection extends SimpleLHSSection {

    public CommonConfigSection() {
        super();

        LHSNavItem paths = new LHSNavItem("Paths", "domain/paths");
        LHSNavItem interfaces = new LHSNavItem("Interfaces", "domain/domain-interfaces");
        LHSNavItem sockets = new LHSNavItem("Socket Binding Groups", "domain/socket-bindings");
        LHSNavItem properties = new LHSNavItem("System Properties", "domain/domain-properties");

        addNavItems(paths, interfaces, sockets, properties);
    }
View Full Code Here

Examples of org.jboss.as.console.client.widgets.LHSNavItem

        LayoutPanel commonLayout = new LayoutPanel();
        commonLayout.setStyleName("stack-section");

        LHSNavItem[] commonItems = new LHSNavItem[] {
                new LHSNavItem("Browser", "debug/model-browser"),
                new LHSNavItem("Invocation Metrics", "debug/invocation-metrics")
                //new LHSNavItem("Operations", "debug/model-operations"),
        };

        int i =0;
        for(LHSNavItem item : commonItems)
View Full Code Here

Examples of org.jboss.as.console.client.widgets.LHSNavItem

        subsysTree = new LHSNavigationTree();
        root = new TreeItem("Subsystems in Profile:");
        subsysTree.addItem(root);

        LHSNavItem manage = new LHSNavItem(
                "In-/Exclude Subsystems", "domain/manage-subsystems"
        );

        //layout.add(manage);
View Full Code Here

Examples of org.jboss.as.console.client.widgets.LHSNavItem

class HostConfigSection extends SimpleLHSSection {

    public HostConfigSection() {
        super();

        LHSNavItem paths = new LHSNavItem("Paths", "hosts/host-paths");
        LHSNavItem jvms = new LHSNavItem("Virtual Machines", "hosts/host-interfaces");
        LHSNavItem sockets = new LHSNavItem("Socket Binding Groups", "hosts/host-socket-bindings");
        LHSNavItem properties = new LHSNavItem("System Properties", "host/host-properties");

        addNavItems(paths, jvms, sockets, properties);
    }
View Full Code Here

Examples of org.jboss.as.console.client.widgets.LHSNavItem

    public ServersConfigSection() {

        layout = new LayoutPanel();
        layout.setStyleName("stack-section");

        LHSNavItem createNew = new LHSNavItem(
                "Create Server",
                "hosts/" + NameTokens.ServerPresenter + ";action=new",
                Icons.INSTANCE.add_small()
        );
View Full Code Here

Examples of org.jboss.as.console.client.widgets.LHSNavItem

    public DeploymentSection() {

        layout = new LayoutPanel();
        layout.setStyleName("stack-section");

        LHSNavItem current = new LHSNavItem(
                "Available Deployments",
                NameTokens.DeploymentsPresenter,
                Icons.INSTANCE.inventory_small()
        );

        LHSNavItem createNew = new LHSNavItem(
                "Add Deployment",
                "current-deployments;action=new",
                Icons.INSTANCE.add_small()
        );

        LHSNavItem plans= new LHSNavItem("Deployment Plans", "deployment-plans");

        addNavItems(createNew, current, plans);
    }
View Full Code Here

Examples of org.jboss.as.console.client.widgets.LHSNavItem

    public ServerInstancesSection() {

        layout = new LayoutPanel();
        layout.setStyleName("stack-section");

        LHSNavItem overview = new LHSNavItem(
                "Server Status",
                Icons.INSTANCE.inventory_small(),
                new ClickHandler() {
                    @Override
                    public void onClick(ClickEvent event) {
                        Console.MODULES.getPlaceManager().revealPlaceHierarchy(
                                Places.fromString(buildToken())
                        );
                    }
                }
        );

        LHSNavItem startNew = new LHSNavItem(
                "Launch Instance",
                Icons.INSTANCE.add_small(),
                new ClickHandler() {
                    @Override
                    public void onClick(ClickEvent event) {
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.