Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 09a9b6aea324eb91752efc41afc2bd8b7bac8904 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package org.eclipse.papyrus.integrationtests.editor.operationhistory;

import org.eclipse.papyrus.integrationtests.editor.ExecutionException;




public interface IOperationHistoryHandler {

	/**
	 * 
	 * @return
	 */
	public boolean canRedo();

	/**
	 * Redo the last operation in the history.
	 * @throws ExecutionException 
	 */
	public void redo() throws ExecutionException;

	/**
	 * 
	 * @return
	 */
	public boolean canUndo();
	
	/**
	 * Redo the last operation in the history.
	 * @throws ExecutionException 
	 */
	public void undo() throws ExecutionException;

}

Back to the top