Skip to main content
summaryrefslogtreecommitdiffstats
path: root/jaxb
diff options
context:
space:
mode:
authorBrian Vosburgh2013-03-14 17:44:16 +0000
committerBrian Vosburgh2013-03-26 15:21:19 +0000
commit5233dbd0f321c75b67ae8d08f9ea08d15944d1b0 (patch)
tree45e6af03062409406730cf3dfabf283eeb1b1588 /jaxb
parentf3df7ea69017ad4f1e8c40b257b8ee7fc8e288d9 (diff)
downloadwebtools.dali-5233dbd0f321c75b67ae8d08f9ea08d15944d1b0.tar.gz
webtools.dali-5233dbd0f321c75b67ae8d08f9ea08d15944d1b0.tar.xz
webtools.dali-5233dbd0f321c75b67ae8d08f9ea08d15944d1b0.zip
rename AsynchronousExtendedCommandExecutor to
AsynchronousExtendedCommandContext
Diffstat (limited to 'jaxb')
-rw-r--r--jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/InternalJaxbProjectManager.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/InternalJaxbProjectManager.java b/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/InternalJaxbProjectManager.java
index adf4b21f1d..5f7ec0c634 100644
--- a/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/InternalJaxbProjectManager.java
+++ b/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/InternalJaxbProjectManager.java
@@ -38,7 +38,7 @@ import org.eclipse.jpt.common.utility.command.Command;
import org.eclipse.jpt.common.utility.command.StatefulCommandContext;
import org.eclipse.jpt.common.utility.internal.ExceptionHandlerAdapter;
import org.eclipse.jpt.common.utility.internal.ObjectTools;
-import org.eclipse.jpt.common.utility.internal.command.AsynchronousExtendedCommandExecutor;
+import org.eclipse.jpt.common.utility.internal.command.AsynchronousExtendedCommandContext;
import org.eclipse.jpt.common.utility.internal.command.SimpleStatefulExtendedCommandExecutor;
import org.eclipse.jpt.common.utility.internal.iterable.IterableTools;
import org.eclipse.jpt.common.utility.internal.model.AbstractModel;
@@ -156,7 +156,7 @@ public class InternalJaxbProjectManager
* handled (i.e. synchronously or asynchronously).
*/
private volatile StatefulCommandContext eventHandler =
- new AsynchronousExtendedCommandExecutor(
+ new AsynchronousExtendedCommandContext(
JptCommonCoreMessages.DALI_EVENT_HANDLER_THREAD_NAME,
new LocalExceptionHandler()
);

Back to the top