Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Vosburgh2013-03-14 17:20:56 +0000
committerBrian Vosburgh2013-03-26 15:17:52 +0000
commit249a014e701c0a2a5222357d8d71405621719ec2 (patch)
tree332380e6099caba5dcfd5f5308f071e1de1539bc /common/plugins/org.eclipse.jpt.common.core/src
parent35a8c96e3acf451115f217b8b196c7fc1099f6b4 (diff)
downloadwebtools.dali-249a014e701c0a2a5222357d8d71405621719ec2.tar.gz
webtools.dali-249a014e701c0a2a5222357d8d71405621719ec2.tar.xz
webtools.dali-249a014e701c0a2a5222357d8d71405621719ec2.zip
rename SingleUseQueueingJobCommandExecutor to
SingleUseQueueingJobCommandContext
Diffstat (limited to 'common/plugins/org.eclipse.jpt.common.core/src')
-rw-r--r--common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/SingleUseQueueingJobCommandContext.java (renamed from common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/SingleUseQueueingJobCommandExecutor.java)14
1 files changed, 7 insertions, 7 deletions
diff --git a/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/SingleUseQueueingJobCommandExecutor.java b/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/SingleUseQueueingJobCommandContext.java
index 808320ba69..c4adb54b2e 100644
--- a/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/SingleUseQueueingJobCommandExecutor.java
+++ b/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/SingleUseQueueingJobCommandContext.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2012 Oracle. All rights reserved.
+ * 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.
@@ -15,25 +15,25 @@ import org.eclipse.jpt.common.utility.command.StatefulCommandContext;
import org.eclipse.jpt.common.utility.internal.command.SingleUseQueueingCommandExecutor;
/**
- * This command executor wraps and extends a {@link SingleUseQueueingCommandExecutor},
+ * This command context wraps and extends a {@link SingleUseQueueingCommandExecutor},
* adding support for executing {@link JobCommand}s.
*/
-public class SingleUseQueueingJobCommandExecutor
+public class SingleUseQueueingJobCommandContext
extends AbstractSingleUseQueueingJobCommandContext<SingleUseQueueingCommandExecutor, StatefulCommandContext>
{
- public SingleUseQueueingJobCommandExecutor() {
+ public SingleUseQueueingJobCommandContext() {
this(new SingleUseQueueingCommandExecutor());
}
- public SingleUseQueueingJobCommandExecutor(CommandContext commandExecutor) {
+ public SingleUseQueueingJobCommandContext(CommandContext commandExecutor) {
this(new SingleUseQueueingCommandExecutor(commandExecutor));
}
- public SingleUseQueueingJobCommandExecutor(StatefulCommandContext commandExecutor) {
+ public SingleUseQueueingJobCommandContext(StatefulCommandContext commandExecutor) {
this(new SingleUseQueueingCommandExecutor(commandExecutor));
}
- public SingleUseQueueingJobCommandExecutor(SingleUseQueueingCommandExecutor commandExecutor) {
+ public SingleUseQueueingJobCommandContext(SingleUseQueueingCommandExecutor commandExecutor) {
super(commandExecutor);
}
}

Back to the top