blob: 5bd07e12f2412cee09f20e681fc6e1525b84a2c6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.utility.internal.command;
import org.eclipse.jpt.common.utility.command.CommandExecutor;
import org.eclipse.jpt.common.utility.command.ExtendedCommandExecutor;
import org.eclipse.jpt.common.utility.command.StatefulCommandExecutor;
/**
* @see AbstractSingleUseQueueingCommandExecutor
*/
public class SingleUseQueueingCommandExecutor
extends AbstractSingleUseQueueingCommandExecutor<StatefulCommandExecutor>
{
public SingleUseQueueingCommandExecutor() {
this(ExtendedCommandExecutor.Default.instance());
}
public SingleUseQueueingCommandExecutor(CommandExecutor commandExecutor) {
this(new SimpleStatefulCommandExecutor(commandExecutor));
}
public SingleUseQueueingCommandExecutor(StatefulCommandExecutor commandExecutor) {
super(commandExecutor);
}
}