Examples of CloseAction


Examples of com.intellij.execution.ui.actions.CloseAction

        list.add(upAction);
        return list;
    }

    private AnAction createCloseAction(Executor defaultExecutor, RunContentDescriptor myDescriptor) {
        return new CloseAction(defaultExecutor, myDescriptor, project);
    }
View Full Code Here

Examples of com.intellij.execution.ui.actions.CloseAction

    Executor executor = DefaultRunExecutor.getRunExecutorInstance();
    for (AnAction action : consoleView.createConsoleActions()) {
      toolbarActions.add(action);
    }
    toolbarActions.add(new CloseAction(executor, descriptor, project));
    ExecutionManager.getInstance(project).getContentManager().showRunContent(executor, descriptor);
    consoleView.allowHeavyFilters();
    return descriptor;
  }
View Full Code Here

Examples of com.intellij.execution.ui.actions.CloseAction

        return list;
    }


    protected AnAction createCloseAction(final Executor defaultExecutor, final RunContentDescriptor myDescriptor) {
        return new CloseAction(defaultExecutor, myDescriptor, project);
    }
View Full Code Here

Examples of com.intellij.execution.ui.actions.CloseAction

    return list;
  }


  protected AnAction createCloseAction(final Executor defaultExecutor, final RunContentDescriptor myDescriptor) {
    return new CloseAction(defaultExecutor, myDescriptor, myProject);
  }
View Full Code Here

Examples of jpianotrain.gui.action.CloseAction

    JMenuBar bar=new JMenuBar();

    JMenu appMenu=
      new JMenu(ResourceFactory.getString(MENU_APP_NAME));
    JMenuItem closeItem=
      new JMenuItem(new CloseAction(this));
    appMenu.add(closeItem);

    JMenu modeMenu=
      new JMenu(ResourceFactory.getString(MENU_MODE_NAME));
View Full Code Here

Examples of org.apache.qpid.server.TransactionTimeoutHelper.CloseAction

    {
        super(connection, delegate, name, expiry);
        _transaction = new AsyncAutoCommitTransaction(this.getMessageStore(),this);
        _logSubject = new ChannelLogSubject(this);

        _transactionTimeoutHelper = new TransactionTimeoutHelper(_logSubject, new CloseAction()
        {
            @Override
            public void doTimeoutAction(String reason) throws AMQException
            {
                getConnectionModel().closeSession(ServerSession.this, AMQConstant.RESOURCE_ERROR, reason);
View Full Code Here

Examples of org.apache.qpid.server.TransactionTimeoutHelper.CloseAction

        // by default the session is non-transactional
        _transaction = new AsyncAutoCommitTransaction(_messageStore, this);

        _clientDeliveryMethod = session.createDeliveryMethod(_channelId);

        _transactionTimeoutHelper = new TransactionTimeoutHelper(_logSubject, new CloseAction()
        {
            @Override
            public void doTimeoutAction(String reason) throws AMQException
            {
                closeConnection(reason);
View Full Code Here

Examples of org.apache.qpid.server.TransactionTimeoutHelper.CloseAction

        // by default the session is non-transactional
        _transaction = new AsyncAutoCommitTransaction(_messageStore, this);

        _clientDeliveryMethod = session.createDeliveryMethod(_channelId);

        _transactionTimeoutHelper = new TransactionTimeoutHelper(_logSubject, new CloseAction()
        {
            @Override
            public void doTimeoutAction(String reason) throws AMQException
            {
                closeConnection(reason);
View Full Code Here

Examples of org.apache.qpid.server.TransactionTimeoutHelper.CloseAction

    {
        super(connection, delegate, name, expiry);
        _transaction = new AsyncAutoCommitTransaction(this.getMessageStore(),this);
        _logSubject = new ChannelLogSubject(this);

        _transactionTimeoutHelper = new TransactionTimeoutHelper(_logSubject, new CloseAction()
        {
            @Override
            public void doTimeoutAction(String reason) throws AMQException
            {
                getConnectionModel().closeSession(ServerSession.this, AMQConstant.RESOURCE_ERROR, reason);
View Full Code Here

Examples of org.apache.qpid.server.TransactionTimeoutHelper.CloseAction

        // by default the session is non-transactional
        _transaction = new AsyncAutoCommitTransaction(_messageStore, this);

        _clientDeliveryMethod = session.createDeliveryMethod(_channelId);

        _transactionTimeoutHelper = new TransactionTimeoutHelper(_logSubject, new CloseAction()
        {
            @Override
            public void doTimeoutAction(String reason) throws AMQException
            {
                closeConnection(reason);
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.