summaryrefslogtreecommitdiff
path: root/src/com/google/wireless/gdata/spreadsheets/data/ListFeed.java
blob: d18bfa8807bfe1920f11b0f4ef0cae66587d9a75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// 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;
    }
}