Package com.eviware.soapui.support.components

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


    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 ) ) );

    return toolbar;
  }
View Full Code Here


  private Component buildInterfaceOverviewTab()
  {
    metrics = new MetricsPanel();
    JXToolBar toolbar = UISupport.createSmallToolbar();
    toolbar.addGlue();
    toolbar.addFixed( UISupport
        .createToolbarButton( new ShowOnlineHelpAction( HelpUrls.INTERFACE_OVERVIEW_HELP_URL ) ) );
    metrics.add( toolbar, BorderLayout.NORTH );
    MetricsSection section = metrics.addSection( "WSDL Definition" );
View Full Code Here

    toolbar.add( UISupport.createToolbarButton( runAction = new RunAction() ) );
    toolbar.add( UISupport.createToolbarButton( cancelAction = new CancelRunTestCaseAction(), false ) );
    toolbar.add( UISupport.createToolbarButton( optionsAction = new OptionsAction() ) );
    toolbar.add( UISupport.createToolbarButton( openTestCaseAction = new OpenTestCaseAction() ) );

    toolbar.addGlue();
    toolbar.add( UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.RUNTESTCASESTEP_HELP_URL ) ) );

    return toolbar;
  }
View Full Code Here

        ExportDefinitionAction.SOAPUI_ACTION_ID, getModelItem(), null, "/exportDefinition.gif" ) );
    button.setText( null );
    toolbar.addFixed( UISupport.createToolbarButton( SwingActionDelegate.createDelegate(
        CreateWsdlDocumentationAction.SOAPUI_ACTION_ID, iface, null, "/export.gif" ) ) );
    toolbar.addFixed( button );
    toolbar.addGlue();
    button = UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.WSDL_CONTENT_HELP_URL ) );
    button.setText( null );
    toolbar.addFixed( button );

    return toolbar;
View Full Code Here

    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

    runAction.setEnabled( getModelItem().getTestCaseCount() > 0 );

    JXToolBar toolbar = UISupport.createToolbar();

    addToolbarActions( toolbar );
    toolbar.addGlue();
    toolbar.add( UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.TESTSUITE_HELP_URL ) ) );

    progressBar = new JProgressBar( 0, getModelItem().getTestCaseCount() );
    JPanel progressPanel = UISupport.createProgressBarPanel( progressBar, 10, false );
View Full Code Here

    JXToolBar toolbar = UISupport.createToolbar();
    toolbar.add( UISupport.createToolbarButton( SwingActionDelegate.createDelegate(
        AddNewTestCaseAction.SOAPUI_ACTION_ID, getModelItem(), null, "/testCase.gif" ) ) );
    toolbar.add( UISupport.createToolbarButton( SwingActionDelegate.createDelegate(
        CreateWebTestCaseAction.SOAPUI_ACTION_ID, getModelItem(), null, "/webTestCase.gif" ) ) );
    toolbar.addGlue();
    toolbar.add( UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.TESTSUITEEDITOR_HELP_URL ) ) );
    return toolbar;
  }

  public boolean onClose( boolean canCancel )
View Full Code Here

    builder.addRelatedGap();
    builder.addFixed( new JLabel( "Enable" ) );
    builder.addRelatedGap();
    addLogActions( builder );

    builder.addGlue();
    builder.setBorder( BorderFactory.createEmptyBorder( 2, 3, 3, 3 ) );

    panel.add( builder, BorderLayout.NORTH );

    logListModel = new LogListModel();
View Full Code Here

    toolbar.addFixed( runButton );
    toolbar.addFixed( stopButton );
    toolbar.addFixed( showWsdlButton );
    toolbar.addFixed( optionsButton );

    toolbar.addGlue();

    runInfoLabel = new JLabel( "", SwingConstants.RIGHT );
    toolbar.addFixed( UISupport.setFixedSize( runInfoLabel, 200, 20 ) );
    toolbar.addRelatedGap();
View Full Code Here

    moveAssertionDownAction = new MoveAssertionDownAction();

    JXToolBar toolbar = UISupport.createToolbar();
    addToolbarButtons( toolbar );

    toolbar.addGlue();
    toolbar.add( new ShowOnlineHelpAction(getHelpUrl()) );

    assertionList.addListSelectionListener( new ListSelectionListener()
    {
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.