| 3 | import java.awt.*; |
| 4 | |
| 5 | public class Colors { |
| 6 | |
| 7 | public Color fore; |
| 8 | public Color back; |
| 9 | public Color font; |
| 10 | |
| 11 | public Colors(Color fore, Color back, Color font) { |
| 12 | this.fore = fore; |
| 13 | this.back = back; |
| 14 | this.font = font; |
| 15 | } |
| 16 | |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected