We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4610907 commit 13c40aaCopy full SHA for 13c40aa
3 files changed
src/actions/edit/undoredo/UndoRedoableInterface.java
@@ -1,6 +1,9 @@
1
package actions.edit.undoredo;
2
3
+import org.hamcrest.StringDescription;
4
+
5
public interface UndoRedoableInterface {
6
public void undoAction();
7
public void redoAction();
8
+ public String description();
9
}
src/ui/helper/historyui/HistoryUI.java
@@ -40,6 +40,8 @@ public class HistoryUI extends JFrame
40
@SuppressWarnings("rawtypes")
41
private Stack<ArrayList> delete_history;
42
43
44
45
/**
46
* Setup historyUI
47
*
src/ui/helper/historyui/undoredoDiaglog/UndoredoDialog.java
@@ -0,0 +1,12 @@
+package ui.helper.historyui.undoredoDiaglog;
+import ui.helper.historyui.HistoryUI;
+public class UndoredoDialog extends HistoryUI {
+ public UndoredoDialog(String[] titles) {
+ super(titles);
+ // TODO Auto-generated constructor stub
10
+ }
11
12
+}
0 commit comments