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

Method getSelectedItem

CodenameOne/src/com/codename1/ui/List.java:536–542  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

534 ///
535 /// the current selected item in the list
536 public T getSelectedItem() {
537 int idx = model.getSelectedIndex();
538 if (idx < model.getSize() && idx > -1) {
539 return model.getItemAt(idx);
540 }
541 return null;
542 }
543
544 /// Sets the current selected item in the list
545 ///

Callers 15

fireActionEventMethod · 0.95
pointerReleasedImplMethod · 0.95
testGetSelectedItemMethod · 0.95
testSetSelectedIndexMethod · 0.95
actionPerformedMethod · 0.45
actionPerformedMethod · 0.45
actionPerformedMethod · 0.45
setYearRangeMethod · 0.45
actionPerformedMethod · 0.45

Calls 3

getSelectedIndexMethod · 0.65
getSizeMethod · 0.65
getItemAtMethod · 0.65