View Javadoc

1   /*
2    * @(#) ContentDialog.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 java.util.ArrayList;
17  
18  import nl.tudelft.simulation.supplychain.content.Content;
19  
20  import org.gscg.gameleader.dialogs.components.AbstractDialog;
21  import org.gscg.gameleader.dialogs.content.components.NamePanel;
22  
23  /***
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 ContentDialog extends AbstractDialog
42  {
43  	/*** the content class this panel supports */
44  	public static final Class CLAZZ = Content.class;
45  
46  	/***
47  	 * constructs a new ContentDialog
48  	 */
49  	public ContentDialog()
50  	{
51  		super();
52  		super.panels = new ArrayList();
53  		super.panels.add(NamePanel.class.getName());
54  	}
55  }