(String message)
| 127 | } |
| 128 | |
| 129 | public void notice(String message) { |
| 130 | changeState(NOTICE); |
| 131 | this.message = message; |
| 132 | if (copyErrorButton != null) { |
| 133 | copyErrorButton.setVisible(false); |
| 134 | } |
| 135 | repaint(); |
| 136 | } |
| 137 | |
| 138 | public void error(String message) { |
| 139 | changeState(ERR); |
no test coverage detected