Tagged Questions
3
votes
2answers
987 views
Storing the state of a complex object with Memento pattern (and Command)
I'm working on a small UML editor project, in Java, that I started a couple of months ago. After a few weeks, I got a working copy for a UML class diagram editor.
But now, I'm redesigning it ...
0
votes
3answers
112 views
How to create default instances of the memento in a Memento Pattern?
I use the Memento Pattern to save properties of a multi-instance form, where n forms are created by user inside a parent form. The purpose of the memento is to regain the same number of forms, and ...