summaryrefslogtreecommitdiff
path: root/src/com/google/wireless/gdata/spreadsheets/data/CellFeed.java
blob: 9281e094966828f04c2d1edf4bcc8c6914988ce9 (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 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;
    }
}