Table.getSelectedItems

I´m wondering why table does not have a method like

Table.getSelectedItems I mean: you have to add event listeners and maintain the list of selected rows externally, and that is just weird to me

Any thoughts?

Table has
getValue
; gets the selected item id or in multiselect mode a set of selected ids.
To enable multiselect mode call setMultiSelect(true).

ok, thanks