(boolean show)
| 205 | } |
| 206 | |
| 207 | public void showLabel(boolean show) { |
| 208 | if(!show) { |
| 209 | setLabelSelected(false); |
| 210 | allowTextInput(false); |
| 211 | this.arrowText.setText(""); |
| 212 | this.arrowTextField.setText(""); |
| 213 | } |
| 214 | this.arrowText.setVisible(show); |
| 215 | this.arrowText.setDisable(!show); |
| 216 | this.arrowTextField.setVisible(show); |
| 217 | this.arrowTextField.setEditable(show); |
| 218 | this.arrowTextField.setDisable(!show); |
| 219 | setMouseTransparent(!show); |
| 220 | } |
| 221 | |
| 222 | } |
no test coverage detected