(String text)
| 250 | } |
| 251 | |
| 252 | public void setTopText(String text) { |
| 253 | if (this.topTextField == null || this.topLabel == null) |
| 254 | return; |
| 255 | this.topTextField.setText(text); |
| 256 | this.topLabel.setText(text); |
| 257 | } |
| 258 | |
| 259 | public void setTopFont(Font font) { |
| 260 | if (this.topTextField == null || this.topLabel == null) |
no test coverage detected