Back to project page PhotoShare.
The source code is released under:
MIT License
If you think the Android project PhotoShare 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.example.parse; //from www . j a v a 2s. c o m import com.parse.ParseClassName; import com.parse.ParseFile; import com.parse.ParseObject; import com.parse.ParseUser; @ParseClassName("PrsPhoto") public class PrsPhoto extends ParseObject { public PrsPhoto() { // A default constructor is required. } public String getTitle() { return getString("title"); } public void setTitle(String title) { put("title", title); } public ParseUser getAuthor() { return getParseUser("author"); } public void setAuthor(ParseUser user) { put("author", user); } public ParseFile getPhotoFile() { return getParseFile("photo"); } public void setPhotoFile(ParseFile file) { put("photo", file); } }