Package com.eviware.soapui.support.components

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


      resolveButton.setActionCommand( "resolve" );
      resolveButton.addActionListener( this );

      JXToolBar toolbar = UISupport.createToolbar();
      toolbar.addFixed( auto );
      toolbar.addFixed( resolveButton );

      log = new JLogList( "Schema log" );
      conflicts.add( toolbar, BorderLayout.NORTH );
      conflicts.add( log, BorderLayout.CENTER );
      addTab( "Conflicts", conflicts );
View Full Code Here


      schemaList = new JList( InferredSchemaManager.getInferredSchema( service ).getNamespaces() );
      schemaList.setSelectionMode( ListSelectionModel.SINGLE_SELECTION );
      schemaList.addListSelectionListener( this );

      toolbar = UISupport.createToolbar();
      toolbar.addFixed( UISupport.createToolbarButton( new RemoveNamespaceAction() ) );

      JPanel listPanel = new JPanel();
      listPanel.setLayout( new BorderLayout() );
      listPanel.add( toolbar, BorderLayout.NORTH );
      listPanel.add( new JScrollPane( schemaList ), BorderLayout.CENTER );
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;
  }

  protected void buildInterfaceSummary( MetricsSection section )
View Full Code Here

    for( TestStep testStep : loadTestLog.getLoadTest().getTestCase().getTestStepList() )
    {
      types.add( testStep.getName() );
    }

    toolbar.addFixed( new JLabel( "Show Steps:" ) );
    toolbar.addSeparator();
    stepsFilterComboBox = new JComboBox( types.toArray() );
    stepsFilterComboBox.addItemListener( new ItemListener()
    {
View Full Code Here

        updateRowCountLabel();
      }
    } );

    toolbar.addFixed( stepsFilterComboBox );
    // toolbar.setBorder( BorderFactory.createEmptyBorder( 0, 0, 2, 0 ));

    return toolbar; // builder.getPanel();
  }
View Full Code Here

  protected JXToolBar buildGroovyEditorToolbar( DispatchScriptGroovyEditorModel editorModel )
  {
    JXToolBar toolbar = UISupport.createToolbar();
    toolbar.addSpace( 3 );
    toolbar.addFixed( UISupport.createToolbarButton( editorModel.getRunAction() ) );
    toolbar.addGlue();

    JLabel label = new JLabel( "<html>Script is invoked with <code>log</code>, <code>context</code>, "
        + "<code>requestContext</code>, <code>mockRequest</code> and <code>mockOperation</code> variables</html>" );
    label.setToolTipText( label.getText() );
View Full Code Here

        + "<code>requestContext</code>, <code>mockRequest</code> and <code>mockOperation</code> variables</html>" );
    label.setToolTipText( label.getText() );
    label.setMaximumSize( label.getPreferredSize() );

    toolbar.add( label );
    toolbar.addFixed( ModelItemDesktopPanel.createActionButton( new ShowOnlineHelpAction(
        HelpUrls.MOCKOPERATION_SCRIPTDISPATCH_HELP_URL ), true ) );
    return toolbar;
  }

  public void propertyChange( PropertyChangeEvent evt )
View Full Code Here

  {
    JXToolBar toolbar = UISupport.createToolbar();
    toolbar.addSpace( 3 );
    addToolbarActions( editorModel, toolbar );
    toolbar.addGlue();
    toolbar.addFixed( ModelItemDesktopPanel.createActionButton( new ShowOnlineHelpAction(
        HelpUrls.MOCKOPERATION_XPATHDISPATCH_HELP_URL ), true ) );
    return toolbar;
  }

  protected void addToolbarActions( DispatchXPathGroovyEditorModel editorModel, JXToolBar toolbar )
View Full Code Here

  private JXToolBar buildItemsToolbar()
  {
    JXToolBar toolbar = UISupport.createSmallToolbar();

    runButton = UISupport.createToolbarButton( new RunAction() );
    toolbar.addFixed( runButton );
    toolbar.addSeparator();

    toolbar.addFixed( UISupport.createToolbarButton( new AddAction() ) );
    deleteButton = UISupport.createToolbarButton( new DeleteAction() );
    deleteButton.setEnabled( false );
View Full Code Here

    runButton = UISupport.createToolbarButton( new RunAction() );
    toolbar.addFixed( runButton );
    toolbar.addSeparator();

    toolbar.addFixed( UISupport.createToolbarButton( new AddAction() ) );
    deleteButton = UISupport.createToolbarButton( new DeleteAction() );
    deleteButton.setEnabled( false );
    toolbar.addFixed( deleteButton );
    toolbar.addSeparator();
    copyButton = UISupport.createToolbarButton( new CopyAction() );
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.