Constants.java

Go to the documentation of this file.
00001 package edu.rice.cs.hpc.traceviewer.data.util;
00002 
00003 import org.eclipse.swt.SWT;
00004 import org.eclipse.swt.graphics.Color;
00005 import org.eclipse.swt.widgets.Display;
00006 
00007 public class Constants {
00008     
00009     public final static Color COLOR_WHITE = Display.getCurrent().getSystemColor(SWT.COLOR_WHITE);
00010     public final static Color COLOR_BLACK = Display.getCurrent().getSystemColor(SWT.COLOR_BLACK);
00011     
00014     public final static short DARKEST_COLOR_FOR_BLACK_TEXT = 384;
00015     
00017     public final static int MIN_TIME_UNITS_DISP = 1;
00018     
00019     public static final int dataIdxNULL = -1;
00020     public static final int dataIdxNoData = 0; // corresponds to "no data"
00021     public static final String dataStrNULL = null;
00022     
00023     public static final int DONE = 0x444F4E45;
00024     public static final int OPEN = 0x4F50454E;
00025     public static final int INFO = 0x494E464F;
00026     public static final int XML_HEADER = 0x45584D4C;
00027     public static final int DATABASE_NOT_FOUND = 0x4E4F4442;
00028     public static final int DB_OK = 0x44424F4B;
00029 
00030 }

Generated on 5 May 2015 for HPCVIEWER by  doxygen 1.6.1