Back to project page Chopping.
The source code is released under:
Apache License
If you think the Android project Chopping 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 com.chopping.data; /* w w w . j a va 2s.co m*/ import com.google.gson.annotations.SerializedName; public final class AppList { @SerializedName("apps") private AppListItem[] mItems; public AppList(AppListItem[] _items) { mItems = _items; } public AppListItem[] getItems() { return mItems; } }