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