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; /*www . j a v a 2 s.c o m*/ import com.google.api.client.util.Data; import com.google.api.client.util.Key; import java.util.List; public class Entry implements Cloneable { @Key public String id; @Key public String title; @Key public String updated; @Key("link") public List<Link> links; @Override protected Entry clone() { return Data.clone(this); } public String getEditLink() { return Link.find(links, "edit"); } }