View Javadoc

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