blob: 19d6ad9fcdd4202d3a51d24a1f475fcb554a3490 [file] [log] [blame]
// Copyright 2007 The Android Open Source Project
package com.google.wireless.gdata2.spreadsheets.data;
import com.google.wireless.gdata2.data.Feed;
/**
* A feed handler for GData Spreadsheets cell-based feeds.
*/
public class CellFeed extends Feed {
private String editUri;
/** Default constructor. */
public CellFeed() {
super();
}
/**
* Fetches the URI to which edits (such as cell content updates) should
* go.
*
* @return the edit URI for this feed
*/
public String getEditUri() {
return editUri;
}
/**
* Sets the URI to which edits (such as cell content updates) should go.
*
* @param editUri the new edit URI for this feed
*/
public void setEditUri(String editUri) {
this.editUri = editUri;
}
}