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; // w w w .j a v a 2 s . c om import java.io.Serializable; /** * Created by matthias on 1/31/2015. */ public class PreferenceSetting implements Serializable { private String oldValue; private String newValue; public Boolean getHasChanged() { return !(oldValue.equals(newValue)); } public String getOldValue() { return oldValue; } public void setOldValue(String oldValue) { this.oldValue = oldValue; } public String getNewValue() { return newValue; } public void setNewValue(String newValue) { this.newValue = newValue; } public PreferenceSetting(String oldValue, String newValue) { this.oldValue = oldValue; this.newValue = newValue; } }