Package org.jboss.as.console.client.shared.viewframework.builder

Examples of org.jboss.as.console.client.shared.viewframework.builder.MultipleToOneLayout


        VerticalPanel formPanel = new VerticalPanel();
        formPanel.setStyleName("fill-layout-width");
        formPanel.add(formTools.asWidget());
        formPanel.add(form.asWidget());

        Widget panel = new MultipleToOneLayout()
                .setPlain(true)
                .setTitle("Boostrap")
                .setHeadline("JCA Boostrap Contexts")
                .setDescription(description.toSafeHtml())
                .setMaster("Configured Contexts", table)
View Full Code Here



        headline = new HTML("HEADLINE");
        headline.setStyleName("content-header-label");

        MultipleToOneLayout layout = new MultipleToOneLayout()
                .setPlain(true)
                .setHeadlineWidget(headline)
                .setTitle("TITLE")
                .setDescription("The administration objects for a resource adapter.")
                .setMaster("Registered Admin Objects", table)
                .setMasterTools(topLevelTools.asWidget())
                .addDetail("Attributes", formpanel)
                .addDetail("Properties", configProperties.asWidget());


        return layout.build();
    }
View Full Code Here

        headline = new Label("HEADLINE");
        headline.setStyleName("content-header-label");

        // ---
        Widget panel = new MultipleToOneLayout()
                .setPlain(true)
                .setHeadlineWidget(headline)
                .setTitle("Thread Pool")
                .setDescription("Thread pool configurations used by a JCA workmanager.")
                .setMaster("Configured Thread Pools", table)
View Full Code Here

                        });

            }
        }));

        Widget panel = new MultipleToOneLayout()
                .setPlain(true)
                .setTitle("Workmanager")
                .setHeadline("Workmanager Overview")
                .setDescription("Work manager for resource adapters.")
                .setMaster("Configured Workmanager", table)
View Full Code Here

        // ----

        propertyEditor = new PropertyEditor(this);

        // ----
        MultipleToOneLayout layoutBuilder = new MultipleToOneLayout()
                .setPlain(true)
                .setTitle("Resource Adapter")
                .setHeadline("Resource Adapter Overview")
                .setDescription("Resource adapter configurations.")
                .setMaster("Registered Resource Adapter", table)
                .setMasterTools(topLevelTools.asWidget())
                .addDetail("Attributes", formpanel)
                .addDetail("Properties", propertyEditor.asWidget());


        return layoutBuilder.build();
    }
View Full Code Here

        form.setEnabled(false);


        //final StaticHelpPanel helpPanel = new StaticHelpPanel(WebServiceDescriptions.getEndpointDescription());

        MultipleToOneLayout layout = new MultipleToOneLayout()
                .setTitle("Webservices")
                .setHeadline("Web Service Endpoints")
                .setMaster(Console.MESSAGES.available("Web Service Endpoints"), table)
                .setDescription(Console.CONSTANTS.subsys_ws_endpoint_desc())
                .setDetail(Console.CONSTANTS.common_label_selection(), form.asWidget());

        return layout.build();
    }
View Full Code Here

            public void onClick(ClickEvent clickEvent) {
                presenter.onProbe(true);
            }
        }));

        MultipleToOneLayout layout = new MultipleToOneLayout()
                .setTitle("Transaction Manager")
                .setHeadline("Transaction Recovery Logs")
                .setDescription("The persistent information that the transaction manager stores for the purpose of recovering a transaction in the event of failure. The probe operation will add and remove transactions from the model as the corresponding real transactions start and finish the prepare and commit phases. A stuck transaction will remain in the model until either it is completed or explicitly removed by the delete operation.")
                .setTopLevelTools(probe.asWidget())
                .setMaster("Transactions", table)
                .setMasterTools(tools)
                .addDetail("Log Entry", formPanel.build())
                .addDetail("Participants", participantsPanel.asWidget());

        return layout.build();
    }
View Full Code Here

        //TextBoxItem sha = new TextBoxItem("sha", "SHA");
        form.setFields(name,runtimeName);

        form.bind(deploymentTable);

        MultipleToOneLayout layout = new MultipleToOneLayout()
                .setTitle(Console.CONSTANTS.common_label_deployments())
                .setHeadline(Console.CONSTANTS.common_label_deployments())
                .setDescription("Currently deployed application components. Deployments that have been added through the filesystem will not be managable through the web interface.")
                .setMaster(Console.MESSAGES.available("Deployments"), deploymentTable)
                .setMasterTools(toolStrip)
                .setDetail(Console.CONSTANTS.common_label_selection(), form.asWidget());

        return layout.build();
    }
View Full Code Here

                    );
                }
            }
        }));

        MultipleToOneLayout layout = new MultipleToOneLayout()
                .setPlain(true)
                .setHeadline(Console.CONSTANTS.common_label_contentRepository())
                .setMaster(Console.MESSAGES.available("Deployment Content"), contentTable)
                .setMasterTools(toolStrip)
                .setDescription("The content repository contains all deployed content. Contents need to be assigned to sever groups in order to become effective.")
                .setDetail(Console.CONSTANTS.common_label_selection(), form.asWidget());


        return layout.build();
    }
View Full Code Here

            }
        });
        formToolStrip.providesDeleteOp(false);

        Widget panel = new MultipleToOneLayout()
                .setTitle("Mail")
                .setHeadline("Mail Sessions")
                .setDescription("The mail session configuration.")
                .setMaster("Configured mail sessions", table)
                .setTopLevelTools(toolstrip.asWidget())
View Full Code Here

TOP

Related Classes of org.jboss.as.console.client.shared.viewframework.builder.MultipleToOneLayout

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.