blob: 2c1c5f04df61419f95ba9871075526b9414a90f1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2013 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.CommandContext;
import org.eclipse.jpt.common.utility.command.StatefulCommandContext;
/**
* @see AbstractSingleUseQueueingCommandContext
*/
public class SingleUseQueueingCommandContext
extends AbstractSingleUseQueueingCommandContext<StatefulCommandContext>
{
public SingleUseQueueingCommandContext() {
this(DefaultExtendedCommandContext.instance());
}
public SingleUseQueueingCommandContext(CommandContext commandContext) {
this(new SimpleStatefulCommandContext(commandContext));
}
public SingleUseQueueingCommandContext(StatefulCommandContext commandContext) {
super(commandContext);
}
}