Exemplo n.º 1
0
 public void Push(DocumentState state)
 {
     states.Add(state);
 }
Exemplo n.º 2
0
 public void Restore(DocumentState memento)
 {
     this.content  = memento.getContent();
     this.fontSize = memento.getFontSize();
     this.fontName = memento.getFontName();
 }