View Javadoc

1   /*
2    * @(#) EditableSaverInterface.java Apr 29, 2004
3    * 
4    * Copyright (c) 2002-2005 Delft University of Technology Jaffalaan 5, 2628 BX
5    * Delft, the Netherlands. All rights reserved.
6    * 
7    * This software is proprietary information of Delft University of Technology
8    * The code is published under the Lesser General Public License
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 2002-2005 <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/lesser.html">Lesser
23   * General Public License (LGPL) </a>, no warranty.
24   * 
25   * @author <a href="http://www.tbm.tudelft.nl/webstaf/royc/index.htm">Roy Chin
26   *         </a>
27   * @version $Revision$ $Date$
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 the list of pairs
36  	 */
37  	void saveEditables(List editables);
38  }