View Javadoc

1   /*
2    * @(#) ColorInterface.java Feb 13, 2005
3    * 
4    * Copyright (c) 2003-2005 Delft University of Technology, Jaffalaan 5, 2628 BX
5    * Delft, the Netherlands. All rights reserved.
6    * 
7    * See for project information <a href="http://www.simulation.tudelft.nl/">
8    * www.simulation.tudelft.nl </a>.
9    * 
10   * The source code and binary code of this software is proprietary information
11   * of Delft University of Technology.
12   */
13  package org.gscg.common.gui;
14  
15  import java.awt.Color;
16  
17  /***
18   * Defines the colors which are used by the different Swing objects.
19   * <p>
20   * (c) copyright 2005 <a href="http://www.simulation.tudelft.nl">Delft
21   * University of Technology </a>, the Netherlands. <br>
22   * See for project information <a
23   * href="http://www.simulation.tudelft.nl">www.simulation.tudelft.nl </a> <br>
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:10 $
38   * @since 1.1.3
39   */
40  public interface ColorInterface
41  {
42  	/***
43  	 * @return Returns the businessPanelBackGroundColor.
44  	 */
45  	Color getBusinessPanelBackGroundColor();
46  
47  	/***
48  	 * @return Returns the cellBackGroundColor.
49  	 */
50  	Color getCellBackGroundColor();
51  
52  	/***
53  	 * @return Returns the cellButtonBackGroundColor.
54  	 */
55  	Color getCellButtonBackGroundColor();
56  
57  	/***
58  	 * @return Returns the mainPanelBackGroundColor.
59  	 */
60  	Color getMainPanelBackGroundColor();
61  
62  	/***
63  	 * @return Returns the progressIndicatorColor.
64  	 */
65  	Color getProgressIndicatorColor();
66  }