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 w ww . ja v a 2 s . c o m*/ import java.io.Serializable; /** * Created by mattleib on 1/26/2015. */ public class Location implements Serializable { protected String DisplayName; public String getDisplayName() { return DisplayName; } public void setDisplayName(String displayName) { DisplayName = displayName; } public Location(String displayName) { this.DisplayName = displayName; } }