Back to project page vk-android-sdk.
The source code is released under:
MIT License
If you think the Android project vk-android-sdk 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.vk.sdk.api.model; /*w w w. ja v a 2 s . co m*/ import org.json.JSONException; import org.json.JSONObject; /** * Array of VKGroup * Created by alex_xpert on 28.01.14. */ public class VKApiCommunityArray extends VKList<VKApiCommunityFull> { @Override public VKApiModel parse(JSONObject response) throws JSONException { fill(response, VKApiCommunityFull.class); return this; } }