1
2
3
4
5
6
7
8
9
10 package nl.tudelft.simulation.dsol.gui.editor2D;
11
12 import java.util.List;
13
14 /***
15 * This interface can be implemented in a class that is capable of saving
16 * ediables.
17 * <p>
18 * (c) copyright 2003 <a href="http://www.simulation.tudelft.nl">Delft
19 * University of Technology </a>, the Netherlands. <br>
20 * See for project information <a
21 * href="http://www.simulation.tudelft.nl">www.simulation.tudelft.nl </a> <br>
22 * License of use: <a href="http://www.gnu.org/copyleft/gpl.html">General Public
23 * License (GPL) </a>, no warranty <br>
24 *
25 * @author <a href="http://www.tbm.tudelft.nl/webstaf/royc/index.htm">Roy Chin
26 * </a>
27 * @version 1.0 Aug 04, 2004
28 */
29 public interface EditableSaverInterface
30 {
31 /***
32 * this method expects to be provided with a list in which pairs of
33 * editables and editable renderables are mapped (e.g. in a HashMap)
34 *
35 * @param editables
36 * the list of pairs
37 */
38 void saveEditables(List editables);
39 }