View Javadoc

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