Package com.eviware.soapui.support.components

Examples of com.eviware.soapui.support.components.JXToolBar.addLabeledFixed()


        getModelItem().setMethod( ( RestRequestInterface.RequestMethod )methodCombo.getSelectedItem() );
        updatingRequest = false;
      }
    } );

    toolbar.addLabeledFixed( "HTTP method", methodCombo );
    toolbar.addSeparator();

    toolbar.addFixed( createActionButton( SwingActionDelegate.createDelegate( NewRestRequestAction.SOAPUI_ACTION_ID,
        getModelItem(), null, "/create_empty_request.gif" ), true ) );
View Full Code Here


        exportButton = UISupport.createToolbarButton(new ExportStatisticsHistoryAction(statisticsGraph));

        JXToolBar toolbar = UISupport.createToolbar();

        toolbar.addSpace(5);
        toolbar.addLabeledFixed("Select Step:", buildSelectStepCombo());
        toolbar.addUnrelatedGap();
        toolbar.addLabeledFixed("Resolution:", buildResolutionCombo());
        toolbar.addGlue();
        toolbar.addFixed(exportButton);
        toolbar.addFixed(UISupport.createToolbarButton(new ShowOnlineHelpAction(HelpUrls.STATISTICSGRAPH_HELP_URL)));
View Full Code Here

        JXToolBar toolbar = UISupport.createToolbar();

        toolbar.addSpace(5);
        toolbar.addLabeledFixed("Select Step:", buildSelectStepCombo());
        toolbar.addUnrelatedGap();
        toolbar.addLabeledFixed("Resolution:", buildResolutionCombo());
        toolbar.addGlue();
        toolbar.addFixed(exportButton);
        toolbar.addFixed(UISupport.createToolbarButton(new ShowOnlineHelpAction(HelpUrls.STATISTICSGRAPH_HELP_URL)));

        return toolbar;
View Full Code Here

        interfaceCombo = new JComboBox(names.getNames());
        interfaceCombo.setSelectedIndex(-1);
        interfaceCombo.addItemListener(new InterfaceComboListener());

        toolbar.addLabeledFixed("Interface", interfaceCombo);
        toolbar.addUnrelatedGap();
        operationCombo = new JComboBox(new ExtendedComboBoxModel());
        operationCombo.setPreferredSize(new Dimension(150, 20));
        operationCombo.addItemListener(new OperationComboListener());
View Full Code Here

        toolbar.addUnrelatedGap();
        operationCombo = new JComboBox(new ExtendedComboBoxModel());
        operationCombo.setPreferredSize(new Dimension(150, 20));
        operationCombo.addItemListener(new OperationComboListener());

        toolbar.addLabeledFixed("Operation", operationCombo);

        WsdlOperation operation = getModelItem().getOperation();
        interfaceCombo.setSelectedItem(operation == null ? null : operation.getInterface().getName());
        operationCombo.setSelectedItem(operation == null ? null : operation.getName());
View Full Code Here

            methodResourceCombo = new JComboBox(new PathComboBoxModel());
            methodResourceCombo.setRenderer(new RestMethodListCellRenderer());
            methodResourceCombo.setPreferredSize(new Dimension(200, 20));
            methodResourceCombo.setSelectedItem(getRequest().getRestMethod());

            toolbar.addLabeledFixed("Resource/Method:", methodResourceCombo);
            toolbar.addSeparator();

            pathLabel = new JLabel();
            updateFullPathLabel();
View Full Code Here

    protected JComponent buildToolbar2() {
        JXToolBar toolbar = UISupport.createToolbar();

        toolbar.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));

        toolbar.addLabeledFixed(ENDPOINT, addEndpointField());
        toolbar.addSeparator();
        toolbar.addLabeledFixed(AMF_CALL, addAmfCallField());

        return toolbar;
View Full Code Here

        toolbar.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));

        toolbar.addLabeledFixed(ENDPOINT, addEndpointField());
        toolbar.addSeparator();
        toolbar.addLabeledFixed(AMF_CALL, addAmfCallField());

        return toolbar;

    }
View Full Code Here

                getModelItem().setMethod((RestRequestInterface.HttpMethod) methodCombo.getSelectedItem());
                updatingRequest = false;
            }
        });

        toolbar.addLabeledFixed("HTTP method", methodCombo);
        toolbar.addSeparator();

        toolbar.addFixed(createActionButton(SwingActionDelegate.createDelegate(NewRestRequestAction.SOAPUI_ACTION_ID,
                getModelItem(), null, "/create_empty_request.gif"), true));
View Full Code Here

        exportButton = UISupport.createToolbarButton(new ExportSamplesHistoryAction(historyGraph));

        JXToolBar toolbar = UISupport.createToolbar();

        toolbar.addSpace(5);
        toolbar.addLabeledFixed("Select Statistic:", buildSelectStatisticCombo());
        toolbar.addUnrelatedGap();
        toolbar.addLabeledFixed("Resolution:", buildResolutionCombo());
        toolbar.addGlue();
        toolbar.addFixed(exportButton);
        toolbar.addFixed(UISupport.createToolbarButton(new ShowOnlineHelpAction(HelpUrls.STATISTICSGRAPH_HELP_URL)));
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.