View Javadoc

1   /*
2    * $Id: ColorRegistry.java 7963 2007-08-21 08:53:15Z dirk.olmes $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  
11  package org.mule.tools.visualizer.config;
12  
13  public class ColorRegistry
14  {
15  
16      // colors from http://www.graphviz.org/pub/scm/graphviz2/doc/info/colors.html
17  
18      public static final String COLOR_DEFINED_ENDPOINTS = "lightblue";
19  
20      public static final String COLOR_ROUTER = "darkolivegreen3";
21  
22      public static final String COLOR_FILTER = "gold";
23  
24      public static final String COLOR_ENDPOINT = "white";
25  
26      public static final String COLOR_COMPONENT = "grey";
27  
28      public static final String COLOR_CONFIG = "white";
29  
30      public static final String COLOR_TRANSFORMER = "cyan";
31  
32      public static final String COLOR_MODEL = "white";
33  
34      public static final String COLOR_AGENTS = "white";
35  
36      public static final String COLOR_CONNECTOR = "grey91";
37  
38      public static final String COLOR_CONNECTION_STRATEGY = "orange";
39  
40      public static final String COLOR_EXCEPTION_STRATEGY = "indianred1";
41  
42      public static final String COLOR_EXTERNAL = "white";
43  
44  }