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