|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| AwtToolkit.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 |
/*
|
|
| 2 |
* EJTools, the Enterprise Java Tools
|
|
| 3 |
*
|
|
| 4 |
* Distributable under LGPL license.
|
|
| 5 |
* See terms of license at www.gnu.org.
|
|
| 6 |
*/
|
|
| 7 |
package org.ejtools.adwt;
|
|
| 8 |
|
|
| 9 |
import java.awt.Color;
|
|
| 10 |
import java.awt.Font;
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
/**
|
|
| 14 |
* @author Laurent Etiemble
|
|
| 15 |
* @version $Revision: 1.5 $
|
|
| 16 |
*/
|
|
| 17 |
public class AwtToolkit |
|
| 18 |
{
|
|
| 19 |
/** Description of the Field */
|
|
| 20 |
public static Color DARK_BLUE = new Color(0, 0, 144); |
|
| 21 |
/** Description of the Field */
|
|
| 22 |
public static Color DARK_RED = new Color(144, 0, 0); |
|
| 23 |
|
|
| 24 |
/** Description of the Field */
|
|
| 25 |
public static Font FONT = new Font("SansSerif", Font.BOLD, 10); |
|
| 26 |
|
|
| 27 |
|
|
| 28 |
/** Constructor for AwtToolkit. */
|
|
| 29 | 0 |
private AwtToolkit()
|
| 30 |
{
|
|
| 31 | 0 |
super();
|
| 32 |
} |
|
| 33 |
} |
|
| 34 |
|
|
||||||||||