View Javadoc

1   /*
2    * @(#) EditableSaverInterface.java Apr 29, 2004
3    * 
4    * Copyright (c) 2003 Delft University of Technology Jaffalaan 5, 2628 BX Delft,
5    * the Netherlands All rights reserved.
6    * 
7    * This software is proprietary information of Delft University of Technology
8    * The code is published under the 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 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  }