Skip to content

Commit 13c40aa

Browse files
committed
ss
1 parent 4610907 commit 13c40aa

3 files changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
package actions.edit.undoredo;
22

3+
import org.hamcrest.StringDescription;
4+
35
public interface UndoRedoableInterface {
46
public void undoAction();
57
public void redoAction();
8+
public String description();
69
}

src/ui/helper/historyui/HistoryUI.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ public class HistoryUI extends JFrame
4040
@SuppressWarnings("rawtypes")
4141
private Stack<ArrayList> delete_history;
4242

43+
44+
4345
/**
4446
* Setup historyUI
4547
*
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package ui.helper.historyui.undoredoDiaglog;
2+
3+
import ui.helper.historyui.HistoryUI;
4+
5+
public class UndoredoDialog extends HistoryUI {
6+
7+
public UndoredoDialog(String[] titles) {
8+
super(titles);
9+
// TODO Auto-generated constructor stub
10+
}
11+
12+
}

0 commit comments

Comments
 (0)