1 package com.loribel.commons.abstraction;
2
3 /***
4 * Abstraction of a memento.
5 * Pattern : see Memento pattern.
6 *
7 * @author Grégory Borelli
8 */
9 public interface GB_Memento
10 {
11 /***
12 * Restore the values of business object with the values of this memento.
13 */
14 void restore();
15
16 }