(String hint, Image icon)
| 8518 | /// |
| 8519 | /// - `icon`: the hint icon to display |
| 8520 | void setHint(String hint, Image icon) { |
| 8521 | Label hintLabel = getHintLabelImpl(); |
| 8522 | if (hintLabel == null) { |
| 8523 | hintLabel = new Label(hint); |
| 8524 | hintLabel.setUIID("TextHint"); |
| 8525 | setHintLabelImpl(hintLabel); |
| 8526 | } else { |
| 8527 | hintLabel.setText(hint); |
| 8528 | } |
| 8529 | hintLabel.setIcon(icon); |
| 8530 | } |
| 8531 | |
| 8532 | /// This property is useful for blocking in z-order touch events, sometimes we might want to grab touch events in |
| 8533 | /// a specific component without making it focusable. |
nothing calls this directly
no test coverage detected