Back to project page android-google-spreadsheets-api.
The source code is released under:
Apache License
If you think the Android project android-google-spreadsheets-api 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.github.spreadsheets.android.api.model; /* w w w. jav a 2 s .co m*/ import com.google.api.client.util.Key; public class SpreadsheetEntry extends Entry { @Key public Content content; @Key("author") public Author author; public String getWorksheetFeedLink() { return content.src; } @Override public SpreadsheetEntry clone() { return (SpreadsheetEntry) super.clone(); } }