View Javadoc

1   /*
2    * @(#)DSOLApplicationTraffic.java May 30, 2004
3    * 
4    * Copyright (c) 2003, 2004 Delft University of Technology Jaffalaan 5, 
5    * 2628 BX 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 General Public License
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  }