FileDocCategorySizeDatePackage
EventsFeed.javaAPI DocAndroid 1.5 API627Wed May 06 22:41:16 BST 2009com.google.wireless.gdata.calendar.data

EventsFeed.java

// Copyright 2007 The Android Open Source Project

package com.google.wireless.gdata.calendar.data;

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

/**
 * Feed containing events in a calendar.
 */
public class EventsFeed extends Feed {
    
    private String timezone = null;
    
    /**
     * Creates a new empty events feed.
     */
    public EventsFeed() {
    }

    /**
     * @return the timezone
     */
    public String getTimezone() {
        return timezone;
    }

    /**
     * @param timezone the timezone to set
     */
    public void setTimezone(String timezone) {
        this.timezone = timezone;
    }
}