Package com.eviware.soapui.support.action.swing

Examples of com.eviware.soapui.support.action.swing.DefaultActionList


      @Override
      protected ActionList getDefaultActions()
      {
        if( defaultActions == null )
        {
          defaultActions = new DefaultActionList();
          defaultActions.addAction( SwingActionDelegate.createDelegate( NewMockResponseAction.SOAPUI_ACTION_ID,
              getModelItem(), null, "/addToMockService.gif" ) );
        }

        return defaultActions;
View Full Code Here


      protected ActionList getDefaultActions()
      {
        if( defaultActions == null )
        {
          defaultActions = new DefaultActionList();
          defaultActions.addAction( SwingActionDelegate.createDelegate(
              AddNewMockOperationAction.SOAPUI_ACTION_ID, getModelItem(), null, null ) );
        }

        return defaultActions;
View Full Code Here

    return classpath.toString();
  }

  protected ActionList buildDefaultActions( String helpUrl, T modelItem )
  {
    ActionList actions = new DefaultActionList( "Actions" );

    if( helpUrl != null )
    {
      actions.addAction( new ShowOnlineHelpAction( helpUrl ) );
      actions.addSeparator();
    }

    Action runAction = createRunOption( modelItem );
    actions.addAction( runAction );
    actions.setDefaultAction( runAction );
    actions.addAction( new CloseAction( modelItem ) );

    if( toolsSettingsAction != null )
      actions.addAction( toolsSettingsAction );

    return actions;
  }
View Full Code Here

    dialog.dispose();
  }

  private void initActions( Action helpAction )
  {
    actions = new DefaultActionList();
    actions.addAction( new BackAction() );
    actions.addAction( new NextAction() );
    actions.addAction( new CancelAction() );
    actions.addAction( new FinishAction() );
    if( helpAction != null )
View Full Code Here

      actions.addAction( helpAction );
  }

  public void addAction( Action action )
  {
    DefaultActionList actions = new DefaultActionList();
    actions.addAction( action );
    buttons.addActions( actions );
  }
View Full Code Here

      startSignal.countDown();
  }

  public void addAction( Action action )
  {
    DefaultActionList actions = new DefaultActionList();
    actions.addAction( action );
    buttons.addActions( actions );
  }
View Full Code Here

    return null;
  }

  public void addAction( Action action )
  {
    DefaultActionList actions = new DefaultActionList();
    actions.addAction( action );
    buttons.addActions( actions );
  }
View Full Code Here

  {
    super( workspace );

    buildUI();

    actions = new DefaultActionList( "Desktop" );
    actions.addAction( closeCurrentAction );
    actions.addAction( closeOtherAction );
    actions.addAction( closeAllAction );

    enableWindowActions();
View Full Code Here

    }
  }

  public ActionList buildprevNextCancelActions()
  {
    DefaultActionList actions = new DefaultActionList( "Actions" );
    actions.addAction( new NextAction() );
    actions.addAction( new CancelAction() );
    return actions;
  }
View Full Code Here

  }

  @Override
  public ActionList buildOkCancelActions()
  {
    DefaultActionList actions = new DefaultActionList( "Actions" );
    actions.addAction( new OKAction() );
    actions.addAction( new CancelAction() );
    return actions;
  }
View Full Code Here

TOP

Related Classes of com.eviware.soapui.support.action.swing.DefaultActionList

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.