This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.google.gdata.client.docs.DocsService; | |
import com.google.gdata.data.MediaContent; | |
import com.google.gdata.data.PlainTextConstruct; | |
import com.google.gdata.data.docs.DocumentListEntry; | |
import com.google.gdata.data.docs.DocumentListEntry.MediaType; | |
import com.google.gdata.data.media.MediaByteArraySource; | |
import com.google.gdata.data.media.MediaSource; | |
import com.google.gdata.util.ContentType; | |
// ...skipping to the good part... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.essaytagger.model.BasicUser; | |
import com.essaytagger.model.Essay; | |
import com.essaytagger.server.impl.ObjectifyGenericDAO; | |
// ... | |
ObjectifyGenericDAO<BasicUser> basicUserDao = new ObjectifyGenericDAO<BasicUser>(); | |
BasicUser user = basicUserDao.get(userId); | |
ObjectifyGenericDAO<Essay> essayDao = new ObjectifyGenericDAO<Essay>(); |
NewerOlder