(String key, Color defaultValue)
| 125 | } |
| 126 | |
| 127 | private Color initColor(String key, Color defaultValue) |
| 128 | { |
| 129 | String prop = initProperty(key, ColorUtilty.colorToRGBString(defaultValue)); |
| 130 | Logging.debugPrint("init color " + key + " to " + prop); |
| 131 | return Color.valueOf(prop); |
| 132 | } |
| 133 | |
| 134 | public static Color getCustomItemColor() |
| 135 | { |
no test coverage detected