Back to project page pic-taker.
The source code is released under:
MIT License
If you think the Android project pic-taker 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.sambuo.pictaker; /* w ww .j a va2 s.c om*/ import com.parse.ParseClassName; import com.parse.ParseFile; import com.parse.ParseObject; @ParseClassName("UserPicture") public class UserPicture extends ParseObject { public UserPicture() { } public ParseFile getPhotoFile() { return getParseFile("photo"); } public void setPhotoFile(ParseFile file) { put("photo", file); } }