Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Vosburgh2013-03-14 17:18:30 +0000
committerBrian Vosburgh2013-03-26 15:17:18 +0000
commita43cfc74a0584207684a8ee63cf2580a64c11ade (patch)
tree85218e52a0d511a1463c31680c53d4f8605eb9b9 /common/plugins/org.eclipse.jpt.common.core
parent8804a1364ee1cd45286d76a8593bc3c13acad5fb (diff)
downloadwebtools.dali-a43cfc74a0584207684a8ee63cf2580a64c11ade.tar.gz
webtools.dali-a43cfc74a0584207684a8ee63cf2580a64c11ade.tar.xz
webtools.dali-a43cfc74a0584207684a8ee63cf2580a64c11ade.zip
rename AbstractSingleUseQueueingJobCommandExecutor to
AbstractSingleUseQueueingJobCommandContext
Diffstat (limited to 'common/plugins/org.eclipse.jpt.common.core')
-rw-r--r--common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/AbstractSingleUseQueueingJobCommandContext.java (renamed from common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/AbstractSingleUseQueueingJobCommandExecutor.java)10
-rw-r--r--common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/SingleUseQueueingExtendedJobCommandExecutor.java2
-rw-r--r--common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/SingleUseQueueingJobCommandExecutor.java2
3 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/AbstractSingleUseQueueingJobCommandExecutor.java b/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/AbstractSingleUseQueueingJobCommandContext.java
index bac98391e0..17dcc8fbac 100644
--- a/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/AbstractSingleUseQueueingJobCommandExecutor.java
+++ b/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/AbstractSingleUseQueueingJobCommandContext.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.
@@ -18,14 +18,14 @@ import org.eclipse.jpt.common.utility.internal.ObjectTools;
import org.eclipse.jpt.common.utility.internal.command.AbstractSingleUseQueueingCommandExecutor;
/**
- * This job command executor wraps and extends an
+ * This job command context wraps and extends an
* {@link AbstractSingleUseQueueingCommandExecutor},
* adding support for executing {@link JobCommand}s.
* <p>
- * <strong>NB:</strong> This executor <em>ignores</em> any
+ * <strong>NB:</strong> This context <em>ignores</em> any
* {@link ISchedulingRule scheduling rules}.
*/
-public abstract class AbstractSingleUseQueueingJobCommandExecutor<E1 extends AbstractSingleUseQueueingCommandExecutor<E2>, E2 extends StatefulCommandContext>
+public abstract class AbstractSingleUseQueueingJobCommandContext<E1 extends AbstractSingleUseQueueingCommandExecutor<E2>, E2 extends StatefulCommandContext>
implements CombinedCommandContext, StatefulCommandContext
{
/**
@@ -35,7 +35,7 @@ public abstract class AbstractSingleUseQueueingJobCommandExecutor<E1 extends Abs
protected final E1 commandExecutor;
- protected AbstractSingleUseQueueingJobCommandExecutor(E1 commandExecutor) {
+ protected AbstractSingleUseQueueingJobCommandContext(E1 commandExecutor) {
super();
this.commandExecutor = commandExecutor;
}
diff --git a/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/SingleUseQueueingExtendedJobCommandExecutor.java b/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/SingleUseQueueingExtendedJobCommandExecutor.java
index 1b4c8ebf32..b107bf2191 100644
--- a/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/SingleUseQueueingExtendedJobCommandExecutor.java
+++ b/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/utility/command/SingleUseQueueingExtendedJobCommandExecutor.java
@@ -22,7 +22,7 @@ import org.eclipse.jpt.common.utility.internal.command.SingleUseQueueingExtended
* adding support for executing {@link JobCommand}s.
*/
public class SingleUseQueueingExtendedJobCommandExecutor
- extends AbstractSingleUseQueueingJobCommandExecutor<SingleUseQueueingExtendedCommandExecutor, StatefulExtendedCommandContext>
+ extends AbstractSingleUseQueueingJobCommandContext<SingleUseQueueingExtendedCommandExecutor, StatefulExtendedCommandContext>
implements CombinedExtendedCommandContext, StatefulExtendedCommandContext
{
public SingleUseQueueingExtendedJobCommandExecutor() {
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/SingleUseQueueingJobCommandExecutor.java
index 4aac9755bb..808320ba69 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/SingleUseQueueingJobCommandExecutor.java
@@ -19,7 +19,7 @@ import org.eclipse.jpt.common.utility.internal.command.SingleUseQueueingCommandE
* adding support for executing {@link JobCommand}s.
*/
public class SingleUseQueueingJobCommandExecutor
- extends AbstractSingleUseQueueingJobCommandExecutor<SingleUseQueueingCommandExecutor, StatefulCommandContext>
+ extends AbstractSingleUseQueueingJobCommandContext<SingleUseQueueingCommandExecutor, StatefulCommandContext>
{
public SingleUseQueueingJobCommandExecutor() {
this(new SingleUseQueueingCommandExecutor());

Back to the top