1
2
3
4
5
6
7
8
9
10
11 package nl.tudelft.simulation.traffic;
12
13 import nl.tudelft.simulation.dsol.gui.DSOLApplication;
14
15 /***
16 * <br>
17 * (c) copyright 2003-2004 <a href="http://www.simulation.tudelft.nl">Delft
18 * University of Technology </a>, the Netherlands. <br>
19 * See for project information <a href="http://www.simulation.tudelft.nl">
20 * www.simulation.tudelft.nl </a> <br>
21 * License of use: <a href="http://www.gnu.org/copyleft/gpl.html">General
22 * Public License (GPL) </a>, no warranty <br>
23 *
24 * @version May 30, 2004 <br>
25 * @author <a
26 * href="http://www.tbm.tudelft.nl/webstaf/alexandv/index.htm">Alexander
27 * Verbraeck </a>
28 */
29 public class DSOLApplicationTraffic extends DSOLApplication
30 {
31 /***
32 *
33 */
34 public DSOLApplicationTraffic()
35 {
36 super();
37 this.properties.put("dsol-gui.animation.panel.extent", "0;-160;1200;500");
38 this.properties.put("dsol-gui.animation.panel.size", "1018;680");
39 }
40
41 /***
42 * executes the dsol control panel
43 *
44 * @param args the command-line arguments
45 */
46 public static void main(final String[] args)
47 {
48 new DSOLApplicationTraffic();
49 }
50 }