Sets the foreground color.
(int red, int green, int blue)
| 1748 | |
| 1749 | /** Sets the foreground color. */ |
| 1750 | public static void setForegroundColor(int red, int green, int blue) { |
| 1751 | setColor(red, green, blue, true); |
| 1752 | } |
| 1753 | |
| 1754 | /** Sets the background color. */ |
| 1755 | public static void setBackgroundColor(int red, int green, int blue) { |
no test coverage detected