Examples of StaticHelpPanel


Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

        form.setFields(nameItem, contextItem, classItem, typeItem, wsdlItem);
        form.bind(table);
        form.setEnabled(false);


        final StaticHelpPanel helpPanel = new StaticHelpPanel(WebServiceDescriptions.getEndpointDescription());
        layout.add(helpPanel.asWidget());

        layout.add(form.asWidget());

        return layout;
    }
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

                presenter.launchCapabilityWizard(null);
            }
        }));
        layout.add(toolStrip);

        StaticHelpPanel helpPanel = new StaticHelpPanel(Console.MESSAGES.subsys_osgi_capabilitiesHelp());
        layout.add(helpPanel.asWidget());

        capabilitiesTable = new CapabilitiesTable();
        layout.add(capabilitiesTable.asWidget());
    }
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

        propertyTable.addColumnSortHandler(sortHandler);
        propertyTable.getColumnSortList().push(keyColumn);

        if(helpText!=null)
        {
            StaticHelpPanel helpPanel = new StaticHelpPanel(helpText);
            panel.add(helpPanel.asWidget());
        }

        //propertyTable.setEnabled(false);
        panel.add(propertyTable);
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

        propertyTable.addColumnSortHandler(sortHandler);
        propertyTable.getColumnSortList().push(keyColumn);

        if(helpText!=null)
        {
            StaticHelpPanel helpPanel = new StaticHelpPanel(helpText);
            panel.add(helpPanel.asWidget());
        }


        //propertyTable.setEnabled(false);
        panel.add(propertyTable);
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

            html.append("thread-count: The current number of live threads including both daemon and non-daemon threads.\n");
            html.append("daemon-thread-count:The current number of live daemon threads.\n");

            sampler = new PlainColumnView(title)
                    .setColumns(threadCols)
                    .setStaticHelp(new StaticHelpPanel(html.toString()));
        }

        return sampler.asWidget();
    }
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

                html.append("max: The maximum amount of memory in bytes that can be used for memory management.\n");
                html.append("used: The amount of used memory in mega bytes.\n");
                html.append("comitted: The amount of memory in bytes that is committed for the Java virtual machine to use.\n");
                html.append("init:The amount of memory in bytes that the Java virtual machine initially requests from the operating system for memory management.\n");

                ((PlainColumnView)sampler).setStaticHelp(new StaticHelpPanel(html.toString()));
            }
        }

        return sampler.asWidget();
    }
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

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

        Widget formWidget = form.asWidget();

        StaticHelpPanel helpPanel = new StaticHelpPanel(
                Console.MESSAGES.commmon_description_newServerGroup()
        );

        layout.add(helpPanel.asWidget());

        layout.add(formWidget);

        return new WindowContentBuilder(layout, options).build();
    }
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

        TextItem connector = new TextItem("connectorBinding", "Connector Binding");
        TextItem acceptor = new TextItem("acceptorBinding", "Acceptor Binding");

        form.setFields(name, connector, persistenceItem, acceptor);

        StaticHelpPanel helpPanel = new StaticHelpPanel(MessagingDescription.getProviderDescription());

        panel.add(helpPanel.asWidget());
        panel.add(form.asWidget());

        // ------

        panel.add(new ContentGroupLabel("Subresources"));
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

        };

        factoryTable.addColumn(nameColumn, "Name");
        factoryTable.addColumn(jndiColumn, "JNDI");

        StaticHelpPanel helpPanel = new StaticHelpPanel(MessagingDescription.getFactoryDescription());

        panel.add(helpPanel.asWidget());

        panel.add(factoryTable);

        // ----
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

        TextBoxItem expQ= new TextBoxItem("expiryQueue", "Expiry Queue");
        NumberBoxItem redelivery = new NumberBoxItem("redeliveryDelay", "Redelivery Delay");

        form.setFields(dlQ, expQ, redelivery);

        StaticHelpPanel helpPanel = new StaticHelpPanel(MessagingDescription.getAddressingDescription());
        layout.add(helpPanel.asWidget());

        layout.add(form.asWidget());
        return layout;
    }
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.