Package com.eviware.soapui.support.components

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


        });

        toolbar.addRelatedGap();
        toolbar.addFixed(sourceField);
        JButton setSourceButton = UISupport.createToolbarButton(new SetPropertiesSourceAction());
        toolbar.addRelatedGap();
        toolbar.add(setSourceButton);

        toolbar.addSeparator();
        toolbar.add(new JLabel("Save to:"));
        targetField = new JTextField(testStep.getTarget(), 20) {
View Full Code Here


                testStep.setTarget(targetField.getText());
                updatingTarget = false;
            }
        });

        toolbar.addRelatedGap();
        toolbar.addFixed(targetField);
        JButton setTargetButton = UISupport.createToolbarButton(new SetPropertiesTargetAction());
        toolbar.addRelatedGap();
        toolbar.add(setTargetButton);
View Full Code Here

        });

        toolbar.addRelatedGap();
        toolbar.addFixed(targetField);
        JButton setTargetButton = UISupport.createToolbarButton(new SetPropertiesTargetAction());
        toolbar.addRelatedGap();
        toolbar.add(setTargetButton);

        toolbar.add(Box.createHorizontalGlue());
        toolbar.addSeparator();
        toolbar.add(UISupport.createToolbarButton(new ShowOnlineHelpAction(HelpUrls.PROPERTIESSTEPEDITOR_HELP_URL)));
View Full Code Here

        testStepsCombo = new JComboBox(testStepsModel);
        testStepsCombo.setToolTipText("The step the test case will go to if the current condition is true");
        testStepsCombo.setEnabled(false);
        UISupport.setFixedSize(testStepsCombo, 280, 20);
        builder.addFixed(new JLabel("<html><b>Target step:</b></html>"));
        builder.addRelatedGap();
        builder.addFixed(testStepsCombo);
        builder.addGlue();
        testConditionButton = new JButton(new TestConditionAction());
        testConditionButton.setEnabled(false);
        builder.addFixed(testConditionButton);
View Full Code Here

        label.setToolTipText(label.getText());
        label.setMinimumSize(label.getPreferredSize());
        label.setMaximumSize(label.getPreferredSize());

        toolBar.add(label);
        toolBar.addRelatedGap();
        toolBar.add(UISupport.createToolbarButton(new ShowOnlineHelpAction(HelpUrls.GROOVYSTEPEDITOR_HELP_URL)));

        componentEnabler.add(runButton);

        return toolBar;
View Full Code Here

    private Component builderWsiToolbar() {
        JXToolBar toolbar = UISupport.createToolbar();

        toolbar.addFixed(UISupport.createToolbarButton(new RunWSIAction()));
        toolbar.addFixed(UISupport.createToolbarButton(new WSIOptionsAction()));
        toolbar.addRelatedGap();
        saveWsiReportAction = new SaveWsiReportAction();
        toolbar.addFixed(UISupport.createToolbarButton(saveWsiReportAction));

        toolbar.addGlue();
        toolbar.addFixed(UISupport.createToolbarButton(new ShowOnlineHelpAction(HelpUrls.WSI_COMPLIANCE_HELP_URL)));
View Full Code Here

                + "and <code>testRunner</code> variables</html>");
        label.setToolTipText(label.getText());
        label.setMaximumSize(label.getPreferredSize());

        toolBar.add(label);
        toolBar.addRelatedGap();
        toolBar.add(UISupport.createToolbarButton(new ShowOnlineHelpAction(HelpUrls.GROOVYSTEPEDITOR_HELP_URL)));

        componentEnabler.add(runButton);

        return toolBar;
View Full Code Here

        JXToolBar toolbar = UISupport.createToolbar();

        toolbar.addFixed(UISupport.createToolbarButton(new AddAction()));
        deleteButton = UISupport.createToolbarButton(new DeleteAction());
        toolbar.addFixed(deleteButton);
        toolbar.addRelatedGap();
        assignButton = new JButton(new AssignAction());
        toolbar.addFixed(assignButton);

        toolbar.addGlue();
        ShowOnlineHelpAction showOnlineHelpAction = new ShowOnlineHelpAction(HelpUrls.ENDPOINTSEDITOR_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.