Package com.eviware.soapui.impl.support.actions

Examples of com.eviware.soapui.impl.support.actions.ShowOnlineHelpAction


      toolBar.addUnrelatedGap();
    }

    if( helpUrl != null )
    {
      toolBar.addFixed( UISupport.createToolbarButton( new ShowOnlineHelpAction( helpUrl ) ) );
    }

    add( toolBar, BorderLayout.NORTH );
    revalidate();
    repaint();
View Full Code Here


    JXToolBar toolbar = UISupport.createToolbar();

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

    progressBar = new JProgressBar( 0, project.getTestSuiteCount() );
    JPanel progressPanel = UISupport.createProgressBarPanel( progressBar, 10, false );

    JPanel panel = new JPanel( new BorderLayout() );
View Full Code Here

  {
    JXToolBar toolbar = UISupport.createToolbar();
    toolbar.add( UISupport.createToolbarButton( SwingActionDelegate.createDelegate(
        AddNewTestSuiteAction.SOAPUI_ACTION_ID, project, null, "/testSuite.gif" ) ) );
    toolbar.addGlue();
    toolbar.add( UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.TESTSUITELIST_HELP_URL ) ) );
    return toolbar;
  }
View Full Code Here

    toolbar.add( resetButton );
    toolbar.add( exportButton );

    toolbar.add( optionsButton );
    toolbar.add( convertToLoadUIButton );
    toolbar.add( UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.LOADTESTEDITOR_HELP_URL ) ) );
    toolbar.add( Box.createHorizontalGlue() );
    buildLimitBar( toolbar );
    toolbar.addSeparator();

    progressBar = new JProgressBar( 0, 100 );
View Full Code Here

    // "/convertLoadTestToLoadUI.png" ) );
    synchronizeWithLoadUIButton = UISupport.createToolbarButton( new SynchronizeWithLoadUIAction() );
    addToolbarActions( toolbar );

    toolbar.add( Box.createHorizontalGlue() );
    toolbar.add( UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.TESTCASEEDITOR_HELP_URL ) ) );

    return toolbar;
  }
View Full Code Here

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

    return toolbar;
  }
View Full Code Here

  protected JXToolBar buildOverviewToolbar()
  {
    JXToolBar toolbar = UISupport.createSmallToolbar();
    toolbar.addGlue();
    toolbar
        .addFixed( UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.PROJECT_OVERVIEW_HELP_URL ) ) );
    return toolbar;
  }
View Full Code Here

    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

    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

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

    try
    {
View Full Code Here

TOP

Related Classes of com.eviware.soapui.impl.support.actions.ShowOnlineHelpAction

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.