Math2mat

/home/ythoma/docs/math2mat/svn/wp1/framework/m2mGUI/src/m2m/backend/structure/GraphParams.java

Go to the documentation of this file.
00001 /******************************************************************************
00002  *                                                                      GraphParams
00003  ******************************************************************************
00004  * @auteur                      : Trolliet Gregory
00005  * @date                                : 8 févr. 2010
00006  * @description :
00007  ******************************************************************************/
00008 
00009 package m2m.backend.structure;
00010 
00011 public class GraphParams {
00012 
00013         private static String COLORBLUE = "lightskyblue";
00014         private static String COLORYELLOW = "lightgoldenrod";
00015         private static String COLORRED = "pink";
00016         private static String COLORGREEN = "palegreen";
00017 
00018         public static String defaultColor = COLORBLUE;
00019         public static String inputColor = COLORRED;
00020         public static String outputColor = COLORGREEN;
00021         public static String internalColor = COLORYELLOW;
00022         public static String loopIndColor = COLORYELLOW;
00023         public static String selColor = COLORRED;
00024         public static String otherwColor = COLORYELLOW;
00025 
00026         public static String defaultShape = "box";
00027         public static String inputShape = defaultShape;
00028         public static String outputShape = defaultShape;
00029         public static String internalShape = "ellipse";
00030         public static String selShape = defaultShape;
00031 
00032 
00033 
00034 }
 All Classes Namespaces Files Functions Variables Enumerations