ListCollectionView/ArrayCollection tip for using GraniteDS - Ross Henderson - 0 views
blog.rosshenderson.info/...ection-tip-for-using-graniteds
graniteds tip ListCollectionView ArrayCollection

-
The reason why GraniteDS generates properties of type ListCollectionView is simple : it internally uses collections implementations that extend ListCollectionView and not ArrayCollection. But as you have described when you manually assign collections, you should use ArrayCollection. It’s exactly the same as in Java when you do List list = new ArrayList().
- ...4 more annotations...
-
I’m not really sure what the deal is