Back to project page o365api-android-get-events-app.
The source code is released under:
MIT License
If you think the Android project o365api-android-get-events-app listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.mattleib.myinboxapplication; //from www .j a v a 2s. c o m import java.io.Serializable; /** * Created by matthias on 1/31/2015. */ public class SectionItem implements Serializable, Item { public DataTypes.ItemType isItemType() { return DataTypes.ItemType.section; } protected String mUtcEventStartTime; public String getUtcEventStartTime() { return mUtcEventStartTime; } public void setUtcEventStartTime(String utcEventStartTime) { mUtcEventStartTime = utcEventStartTime; } public SectionItem(String utcEventStartTime) { mUtcEventStartTime = utcEventStartTime; } }