Tagged Questions
3
votes
2answers
109 views
Implements undoable command - Java
I'm currently programming a little text editor (project for school) and I'm having some troubles finding a good and clean way to manage the undoable commands.
(It is not a code review question as ...
3
votes
4answers
399 views
Memento implementation on .NET
I've seen two different implementation of memento on .NET.
One is pretty straightforward - The object creates another instance of itself.
The other is serializing the object using BinaryFormatter ...
0
votes
1answer
90 views
I need a design pattern to provide undo functionality to my program
I've used Memento, I need another for my coursework :)