/* * Created on May 14, 2003 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ package CDBuilder.couplingSyntaxEditor; import org.eclipse.swt.graphics.RGB; /** * Sets all the colour constants for comments, containers, default, * keywords and variables * * @author Lucie Zhao and Sherwin Sim * @version 1 May - Aug 2003 * */ public interface ICDColorConstants { /** comments are in gray */ RGB COMMENT = new RGB(128, 128, 128); /** containers in red */ RGB CONTAINER = new RGB(128, 0, 0); /** default in brown */ RGB DEFAULT = new RGB(0, 0, 0); /** keywords in blue */ RGB KEYWORD = new RGB(0, 0 , 128); /** variables in green */ RGB VARIABLE = new RGB(0,128, 0); }