View | Details | Raw Unified | Return to bug 111637 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/gmf/runtime/emf/ui/action/AbstractModelActionDelegate.java (-2 / +2 lines)
Lines 15-21 Link Here
15
15
16
import org.eclipse.gmf.runtime.common.core.util.Trace;
16
import org.eclipse.gmf.runtime.common.core.util.Trace;
17
import org.eclipse.gmf.runtime.common.ui.action.AbstractActionDelegate;
17
import org.eclipse.gmf.runtime.common.ui.action.AbstractActionDelegate;
18
import org.eclipse.gmf.runtime.common.ui.action.IRepeatableAction;
18
import org.eclipse.gmf.runtime.common.ui.action.IActionWithProgress;
19
import org.eclipse.gmf.runtime.emf.core.exceptions.MSLActionAbandonedException;
19
import org.eclipse.gmf.runtime.emf.core.exceptions.MSLActionAbandonedException;
20
import org.eclipse.gmf.runtime.emf.core.util.OperationUtil;
20
import org.eclipse.gmf.runtime.emf.core.util.OperationUtil;
21
import org.eclipse.gmf.runtime.emf.ui.internal.MslUIDebugOptions;
21
import org.eclipse.gmf.runtime.emf.ui.internal.MslUIDebugOptions;
Lines 42-48 Link Here
42
	/**
42
	/**
43
	 * Runs this model action delegate as a read action.
43
	 * Runs this model action delegate as a read action.
44
	 * 
44
	 * 
45
	 * @see IRepeatableAction#run(IProgressMonitor)
45
	 * @see IActionWithProgress#run(IProgressMonitor)
46
	 */
46
	 */
47
	public final void run(final IProgressMonitor progressMonitor) {
47
	public final void run(final IProgressMonitor progressMonitor) {
48
		try {
48
		try {
(-)src/org/eclipse/gmf/runtime/emf/ui/action/AbstractModelActionHandler.java (-2 / +2 lines)
Lines 17-23 Link Here
17
17
18
import org.eclipse.gmf.runtime.common.core.util.Trace;
18
import org.eclipse.gmf.runtime.common.core.util.Trace;
19
import org.eclipse.gmf.runtime.common.ui.action.AbstractActionHandler;
19
import org.eclipse.gmf.runtime.common.ui.action.AbstractActionHandler;
20
import org.eclipse.gmf.runtime.common.ui.action.IRepeatableAction;
20
import org.eclipse.gmf.runtime.common.ui.action.IActionWithProgress;
21
import org.eclipse.gmf.runtime.emf.core.exceptions.MSLActionAbandonedException;
21
import org.eclipse.gmf.runtime.emf.core.exceptions.MSLActionAbandonedException;
22
import org.eclipse.gmf.runtime.emf.core.util.OperationUtil;
22
import org.eclipse.gmf.runtime.emf.core.util.OperationUtil;
23
import org.eclipse.gmf.runtime.emf.ui.internal.MslUIDebugOptions;
23
import org.eclipse.gmf.runtime.emf.ui.internal.MslUIDebugOptions;
Lines 64-70 Link Here
64
	/**
64
	/**
65
	 * Runs this model action handler as a read action.
65
	 * Runs this model action handler as a read action.
66
	 * 
66
	 * 
67
	 * @see IRepeatableAction#run(IProgressMonitor)
67
	 * @see IActionWithProgress#run(IProgressMonitor)
68
	 */
68
	 */
69
	public final void run(final IProgressMonitor progressMonitor) {
69
	public final void run(final IProgressMonitor progressMonitor) {
70
		try {
70
		try {

Return to bug 111637