Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Vosburgh2013-03-14 17:33:17 +0000
committerBrian Vosburgh2013-03-26 15:19:45 +0000
commit64a0bb4936e3e52dbcd1bc12fecb667af889aa17 (patch)
treef992937863eb6adb1d4bf9597517ffa2d075425a /common/plugins/org.eclipse.jpt.common.utility
parent5bef881d12f5bd45d92d0105d00de4af77885954 (diff)
downloadwebtools.dali-64a0bb4936e3e52dbcd1bc12fecb667af889aa17.tar.gz
webtools.dali-64a0bb4936e3e52dbcd1bc12fecb667af889aa17.tar.xz
webtools.dali-64a0bb4936e3e52dbcd1bc12fecb667af889aa17.zip
rename ThreadLocalExtendedCommandExecutor to
ThreadLocalExtendedCommandContext
Diffstat (limited to 'common/plugins/org.eclipse.jpt.common.utility')
-rw-r--r--common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/command/ThreadLocalExtendedCommandContext.java (renamed from common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/command/ThreadLocalExtendedCommandExecutor.java)8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/command/ThreadLocalExtendedCommandExecutor.java b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/command/ThreadLocalExtendedCommandContext.java
index e92627be61..917ad577df 100644
--- a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/command/ThreadLocalExtendedCommandExecutor.java
+++ b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/command/ThreadLocalExtendedCommandContext.java
@@ -15,19 +15,19 @@ import org.eclipse.jpt.common.utility.command.ExtendedCommandContext;
/**
* @see AbstractThreadLocalCommandContext
*/
-public class ThreadLocalExtendedCommandExecutor
+public class ThreadLocalExtendedCommandContext
extends AbstractThreadLocalCommandContext<ExtendedCommandContext>
implements ExtendedCommandContext
{
/**
* The default command executor simply executes commands directly.
*/
- public ThreadLocalExtendedCommandExecutor() {
+ public ThreadLocalExtendedCommandContext() {
this(DefaultExtendedCommandContext.instance());
}
- public ThreadLocalExtendedCommandExecutor(ExtendedCommandContext defaultCommandExecutor) {
- super(defaultCommandExecutor);
+ public ThreadLocalExtendedCommandContext(ExtendedCommandContext defaultCommandContext) {
+ super(defaultCommandContext);
}
public void waitToExecute(Command command) throws InterruptedException {

Back to the top