Back to project page android-memorytrainer.
The source code is released under:
GNU General Public License
If you think the Android project android-memorytrainer 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 org.hoffimar.android.memorytrainer.model; /*from w ww .j a va2s . c o m*/ import com.google.api.client.util.Key; public class SpreadsheetEntry extends Entry { @Key("content") public Content content; public String getTablesLink() { return Link.find(links, "http://schemas.google.com/spreadsheets/2006#tablesfeed"); } public String getContentLink() { return content.src; } }