BrightSide Workbench Full Report + Source Code
elephant/src/main/java/org/turro/plugin/calendar/CalendarColor.java
Go to the documentation of this file.
1 /*
2  * To change this template, choose Tools | Templates
3  * and open the template in the editor.
4  */
5 
6 package org.turro.plugin.calendar;
7 
12 public enum CalendarColor {
13 
14  RED("#A32929", "#D96666"),
15  BLUE("#3467CE", "#668CD9"),
16  PURPLE("#7A367A", "#B373B3"),
17  KHAKI("#88880E", "#BFBF4D"),
18  GREEN("#0D7813", "#4CB052"),
19  SILVER("#545454", "#666666");
20 
21  private String header, content;
22 
23  private CalendarColor(String header, String content) {
24  this.header = header;
25  this.content = content;
26  }
27 
28  public String getHeader() {
29  return header;
30  }
31 
32  public String getContent() {
33  return content;
34  }
35 
36 }