KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > freemarker > eclipse > editors > IColorConstants


1 package freemarker.eclipse.editors;
2
3 import org.eclipse.swt.graphics.RGB;
4
5 /**
6  * @version $Id: IColorConstants.java,v 1.1 2003/02/12 22:28:50 szegedia Exp $
7  * @author <a HREF="mailto:stephan@chaquotay.net">Stephan Mueller</a>
8  */

9 public interface IColorConstants {
10     RGB COMMENT = new RGB(128, 0, 0);
11     RGB STRING= new RGB( 0, 128, 0);
12     RGB DEFAULT= new RGB( 0, 0, 0);
13     RGB DIRECTIVE= new RGB( 0, 0, 160);
14     RGB INTERPOLATION= new RGB(255, 0, 128);
15 }
16
Popular Tags