Back to project page FAST.
The source code is released under:
GNU General Public License
If you think the Android project FAST listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.ligi.fast.model; //from w w w. j av a2s .c o m import java.util.ArrayList; import java.util.List; public class AppInfoList extends ArrayList<AppInfo> { public void update(List<AppInfo> newList) { // check if building and applying a diff is better and not clear(); addAll(newList); } @Override public AppInfo get(int position) { // TODO should do this one at the root of the problem if (size() > 0 && (position+1 > size())) { return super.get(0); } return super.get(position); } }