MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / setUIID

Method setUIID

CodenameOne/src/com/codename1/ui/ComboBox.java:254–271  ·  view source on GitHub ↗
(String uiid)

Source from the content-addressed store, hash-verified

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

Callers 4

createPopupDialogMethod · 0.45
showPopupDialogMethod · 0.45
createPopupListMethod · 0.45

Calls 9

setUIIDMethod · 0.95
getInstanceMethod · 0.95
setBgTransparencyMethod · 0.95
setComboBoxImageMethod · 0.95
createMaterialMethod · 0.95
isThemeConstantMethod · 0.80
getListFocusComponentMethod · 0.65
getStyleMethod · 0.65
getRendererMethod · 0.45