Package com.eviware.soapui.support.components

Examples of com.eviware.soapui.support.components.SimpleForm


    public final static String ENABLE_OVERRIDE = "Enable Override";
    private SimpleForm globalPropertiesForm;

    public SimpleForm getForm() {
        if (globalPropertiesForm == null) {
            globalPropertiesForm = new SimpleForm();

            PropertyHolderTable propertyHolderTable = new PropertyHolderTable(
                    PropertyExpansionUtils.getGlobalProperties());
            propertyHolderTable.setPreferredSize(new Dimension(200, 300));
            globalPropertiesForm.addComponent(propertyHolderTable);
View Full Code Here


        this.title = title;
    }

    public SimpleForm getForm() {
        if (httpForm == null) {
            httpForm = new SimpleForm();
            httpForm.addSpace(5);
            httpForm.appendComboBox(HttpPrefs.HTTP_VERSION, new String[]{HttpSettings.HTTP_VERSION_1_1,
                    HttpSettings.HTTP_VERSION_1_0}, "Select HTTP Version to use");
            httpForm.appendTextField(HttpPrefs.USER_AGENT_HEADER,
                    "User-Agent HTTP header to send, blank will send default");
View Full Code Here

        this.title = title;
    }

    public SimpleForm getForm() {
        if (securityScansForm == null) {
            securityScansForm = new SimpleForm();

            PropertyHolderTable propertyHolderTable = new PropertyHolderTable(
                    SecurityScanUtil.getGlobalSensitiveInformationExposureTokens()) {
                protected JTable buildPropertiesTable() {
                    propertiesModel = new DefaultPropertyHolderTableModel(holder) {
View Full Code Here

    protected JComponent buildRequestConfigPanel() {
        configPanel = UISupport.addTitledBorder(new JPanel(new BorderLayout()), "Configuration");
        if (panel == null) {
            panel = new JPanel(new BorderLayout());
            configForm = new SimpleForm();
            createSimpleJdbcConfigForm();
            addStoreProcedureChangeListener();

            panel.add(new JScrollPane(configForm.getPanel()));
        }
View Full Code Here

        return title;
    }

    public SimpleForm getForm() {
        if (editorForm == null) {
            editorForm = new SimpleForm();
            editorForm.addSpace(5);
            editorForm.appendCheckBox(CLOSE_PROJECTS, "Close all projects on startup", false);
            editorForm.appendSeparator();
            editorForm.appendCheckBox(ORDER_PROJECTS, "Order Projects alphabetically in tree", false);
            editorForm.appendCheckBox(ORDER_SERVICES, "Order Services alphabetically in tree", false);
View Full Code Here

                        editorFontTextField.setText(encodeFont(font));
                    }
                }
            }));

            editorForm = new SimpleForm();
            editorForm.addSpace(5);
            editorForm.append("Editor Font", builder.getPanel());
            editorForm.appendSeparator();
            editorForm.appendCheckBox(XML_LINE_NUMBERS, "Show line numbers in XML editors by default", true);
            editorForm.appendCheckBox(GROOVY_LINE_NUMBERS, "Show line numbers in Groovy editors by default", true);
View Full Code Here

        this.title = title;
    }

    public SimpleForm getForm() {
        if (simpleForm == null) {
            simpleForm = new SimpleForm();
            simpleForm.addSpace(5);

            buildForm(simpleForm);

            simpleForm.addSpace(5);
View Full Code Here

        return title;
    }

    public SimpleForm getForm() {
        if (proxyPrefForm == null) {
            proxyPrefForm = new SimpleForm();
            proxyPrefForm.addSpace(5);
            addProxySettingRadioButtons();
            hostTextField = proxyPrefForm.appendTextField(HOST, "proxy host to use");
            portTextField = proxyPrefForm.appendTextField(PORT, "proxy port to use");
            excludesTextField = proxyPrefForm.appendTextField(EXCLUDES, "Comma-seperated list of hosts to exclude");
View Full Code Here

    public XmlBombSecurityScanConfigPanel(XmlBombSecurityScan xmlCheck) {
        super(new BorderLayout());

        this.xmlChk = xmlCheck;
        this.xmlBombList = xmlCheck.getXmlBombList();
        form = new SimpleForm();
        form.setBorder(BorderFactory.createEmptyBorder(3, 0, 0, 3));
        form.addSpace(5);

        form.addComponent(new JLabel("Xml Bomb Attacments"));
View Full Code Here

        }

        protected Component buildContent() {

            SimpleForm form = new SimpleForm();
            folderComponent = new DirectoryFormComponent(
                    "Location of desired HermesJMS configuration (hermes-config.xml)");
            form.addSpace(5);
            form.append("Path", folderComponent);
            form.addSpace(5);

            return form.getPanel();
        }
View Full Code Here

TOP

Related Classes of com.eviware.soapui.support.components.SimpleForm

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.