Package org.jboss.as.console.client.widgets

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


        // ---

        vpanel.add(new ContentHeaderLabel("JDBC XA Datasources"));

        vpanel.add(new ContentDescription(Console.CONSTANTS.subsys_jca_xadataSources_desc()));

        dataSourceTable = new DefaultCellTable<XADataSource>(8,
                new ProvidesKey<XADataSource>() {
                    @Override
                    public Object getKey(XADataSource item) {
View Full Code Here


        layout.setWidgetTopHeight(scroll, 0, Style.Unit.PX, 100, Style.Unit.PCT);

        // ---

        vpanel.add(new ContentHeaderLabel("JDBC Datasources"));
        vpanel.add(new ContentDescription(Console.CONSTANTS.subsys_jca_dataSources_desc()));

        dataSourceTable = new DatasourceTable();


        vpanel.add(new ContentGroupLabel(Console.MESSAGES.available("Datasources")));
View Full Code Here

        header.add(selector);
        selector.getElement().getParentElement().setAttribute("align", "right");


        panel.add(header);
        panel.add(new ContentDescription("Defines a way in which connections can be made to the HornetQ server."));

        genericAcceptors = new AcceptorList(presenter, AcceptorType.GENERIC);
        remoteAcceptors = new AcceptorList(presenter, AcceptorType.REMOTE);
        invmAcceptors = new AcceptorList(presenter, AcceptorType.INVM);
View Full Code Here

        attributesProvider = new ListDataProvider<T>();
        attributesProvider.addDataDisplay(attributesTable);

        headerLabel = new ContentHeaderLabel("TITLE HERE");
        vpanel.add(headerLabel);
        vpanel.add(new ContentDescription(description));

        vpanel.add(new ContentGroupLabel(getStackName()));

        ToolStrip tableTools = new ToolStrip();
View Full Code Here

        } else {
            header = Console.CONSTANTS.common_label_users();
            description = Console.CONSTANTS.administration_user_assignment();
        }
        content.add(new ContentHeaderLabel(header));
        content.add(new ContentDescription(description));

        // toolstrip
        ToolStrip tools = new ToolStrip();
        tools.addToolButtonRight(new ToolButton(Console.CONSTANTS.common_label_add(), new ClickHandler() {
            @Override
View Full Code Here

        HTML desc = new HTML("<h3>"+ Console.CONSTANTS.subsys_jca_dataSource_step2()+"</h3>");
        desc.getElement().setAttribute("style", "padding-bottom:10px;");

        layout.add(desc);
        layout.add(new ContentDescription("Select one of the deployed JDBC driver."));


        // ---

        table = new DefaultCellTable<JDBCDriver>(5);
View Full Code Here

        VerticalPanel panel = new VerticalPanel();
        panel.setStyleName("fill-layout-width");

        panel.add(new ContentHeaderLabel(entitiesName));
        if(description!=null)
            panel.add(new ContentDescription(description));

        final SingleSelectionModel<T> selectionModel = new SingleSelectionModel<T>();
        table.setSelectionModel(selectionModel);

        // update the detail upon change
View Full Code Here

        private void init() {

            VerticalPanel panel = new VerticalPanel();
            panel.setStyleName("window-content");

            panel.add(new ContentDescription(operationmetaData.get("description").asString()));


            // Helptexts

View Full Code Here

    @Override
    public Widget createWidget() {
        VerticalPanel layout = new VerticalPanel();
        layout.setStyleName("rhs-content-panel");
        layout.add(new ContentHeaderLabel("Authorisation Required"));
        layout.add(new ContentDescription("You don't have the permissions to access this resource!"));
        return layout;
    }
View Full Code Here

        // setup layout
        VerticalPanel main = new VerticalPanel();
        main.setStyleName("rhs-content-panel");
        main.add(new ContentHeaderLabel(Console.CONSTANTS.administration_audit_log()));
        main.add(new ContentDescription(Console.CONSTANTS.administration_audit_log_desc()));
        main.add(table);
        main.add(pager);
        main.add(forms);

        ScrollPanel scroll = new ScrollPanel(main);
View Full Code Here

TOP

Related Classes of org.jboss.as.console.client.widgets.ContentDescription

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.