1
2
3
4
5
6
7
8
9
10
11
12
13
14 package org.gscg.gameleader.dialogs.actor;
15
16 import nl.tudelft.simulation.supplychain.actor.Trader;
17
18 import org.gscg.gameleader.dialogs.actor.components.BankAccountPanel;
19 import org.gscg.gameleader.dialogs.actor.components.NamePanel;
20 import org.gscg.gameleader.dialogs.actor.components.StockPanel;
21 import org.gscg.gameleader.dialogs.components.AbstractDialog;
22
23 /***
24 * The TraderDialog is used to show the name, balance and stock of a trader.
25 * <p>
26 *
27 * Copyright (c) 2003-2005 Delft University of Technology, Jaffalaan 5, 2628 BX
28 * Delft, the Netherlands. All rights reserved.
29 *
30 * See for project information <a href="http://www.simulation.tudelft.nl/">
31 * www.simulation.tudelft.nl </a>.
32 *
33 * The source code and binary code of this software is proprietary information
34 * of Delft University of Technology.
35 *
36 * @author <a
37 * href="http://www.tbm.tudelft.nl/webstaf/stijnh/index.htm">Stijn-Pieter
38 * van Houten </a>
39 * @version $Revision: 1.1 $ $Date: 2005/06/16 12:34:02 $
40 * @since 1.0.3
41 */
42 public class TraderDialog extends AbstractDialog
43 {
44 /*** the actor class this panel supports */
45 public static final Class CLAZZ = Trader.class;
46
47 /***
48 * constructs a new TraderDialog
49 */
50 public TraderDialog()
51 {
52 super();
53
54
55 super.panels.add(NamePanel.class.getName());
56 super.panels.add(BankAccountPanel.class.getName());
57 super.panels.add(StockPanel.class.getName());
58 }
59 }