Back to project page pinpoint-android.
The source code is released under:
MIT License
If you think the Android project pinpoint-android 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 co.islovely.pinpoint; // www .j av a 2 s . c o m import java.util.ArrayList; import java.util.List; public class Homescreen { private int id; private List<LauncherItem> launcherItems; public Homescreen(int id) { this.id = id; this.launcherItems = new ArrayList<LauncherItem>(); } public void addLauncherItem(LauncherItem launcherItem) { this.launcherItems.add(new LauncherItem(launcherItem)); } public int getId() { return this.id; } public List<LauncherItem> getLauncherItems() { return new ArrayList<LauncherItem>(this.launcherItems); } }