Back to project page CloudyPhone.
The source code is released under:
MIT License
If you think the Android project CloudyPhone 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.cloudyphone.android.model.sms; //from w ww . ja va2 s . c o m import org.json.JSONArray; import com.cloudyphone.android.model.MyParseObject; public class ParseSmsThreads extends MyParseObject { private static final String THREADS = "threads"; public ParseSmsThreads(JSONArray smsThreads) { super(ParseSmsThreads.class.getSimpleName()); put(THREADS, smsThreads); } }