> On Jan 12, 2022, at 6:08 PM, Roman Isitua <romanisi...@gmail.com> wrote:
> 
> What is the purpose of  <js:ArrayListSelectionModel />   ?  since it was no 
> longer necessary 

It’s necessary in Royale Basic to use ArrayLists.

In Spectrum, there’s a default ListModel which correctly handles both both 
Array and ArrayList data.

> 
> Also, another question
> which will you recommend one uses ? why should one choose Array over 
> ArrayList or ArrayList over Array.

Array is simpler. There’s less overhead. If you have data which doesn’t change, 
use Array.
If you need the list to update when data changes, use ArrayList.

Reply via email to