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; /* ww w. j a v a 2 s .c o m*/ import com.parse.ParseObject; import com.parse.ParseUser; public class MyParseObject extends ParseObject { private static final String USERNAME = "username"; public MyParseObject(String theClassName) { super(theClassName); ParseUser user = ParseUser.getCurrentUser(); // Save username to this object for later query put(USERNAME, user.getUsername()); } }