| 252 | |
| 253 | /// {@inheritDoc} |
| 254 | @Override |
| 255 | public void setUIID(String uiid) { |
| 256 | super.setUIID(uiid); |
| 257 | ListCellRenderer r = getRenderer(); |
| 258 | if (r instanceof Component) { |
| 259 | Component c = (Component) getRenderer(); |
| 260 | c.setUIID(uiid + "Item"); |
| 261 | } |
| 262 | Component c = getRenderer().getListFocusComponent(this); |
| 263 | if (c != null) { |
| 264 | c.setUIID(uiid + "Focus"); |
| 265 | } |
| 266 | if (UIManager.getInstance().isThemeConstant("comboBoxUseMaterialArrowDropDownBool", false)) { |
| 267 | Style comboImageStyle = new Style(getStyle()); |
| 268 | comboImageStyle.setBgTransparency(0); |
| 269 | setComboBoxImage(FontImage.createMaterial(FontImage.MATERIAL_ARROW_DROP_DOWN, comboImageStyle)); |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | /// {@inheritDoc} |
| 274 | @Override |