KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > terracotta > dso > editors > xml > IXMLColorConstants


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package org.terracotta.dso.editors.xml;
5
6 import org.eclipse.swt.graphics.RGB;
7
8 public interface IXMLColorConstants {
9   RGB XML_COMMENT = new RGB(128, 0, 0);
10   RGB PROC_INSTR = new RGB(128, 128, 128);
11   RGB STRING = new RGB(0, 128, 0);
12   RGB DEFAULT = new RGB(0, 0, 0);
13   RGB TAG = new RGB(0, 0, 128);
14 }
15
Popular Tags