FileDocCategorySizeDatePackage
ListFeed.javaAPI DocAndroid 1.5 API818Wed May 06 22:41:16 BST 2009com.google.wireless.gdata.spreadsheets.data

ListFeed.java

// Copyright 2007 The Android Open Source Project
package com.google.wireless.gdata.spreadsheets.data;

import com.google.wireless.gdata.data.Feed;

/**
 * A feed handler for GData Spreadsheets List-based feeds.
 */
public class ListFeed extends Feed {
    private String editUri;

    /** Default constructor. */
    public ListFeed() {
        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;
    }
}