Back to project page Fast-Brightness-Control-Widget.
The source code is released under:
Apache License
If you think the Android project Fast-Brightness-Control-Widget 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.mod.android.widget.fbcw.bean; /* w w w . j a v a 2 s.c o m*/ import java.io.Serializable; import java.util.Map; public class ApplicationState implements Serializable{ private static final long serialVersionUID = 418084490741556757L; private Map<Integer, Integer> brightnessLevels; private Boolean showMessage; public ApplicationState(Map<Integer, Integer> brightnessLevels, Boolean showMessage) { this.brightnessLevels = brightnessLevels; this.showMessage = showMessage; } public Map<Integer, Integer> getBrightnessLevels() { return brightnessLevels; } public void setBrightnessLevels(Map<Integer, Integer> brightnessLevels) { this.brightnessLevels = brightnessLevels; } public Boolean getShowMessage() { return showMessage; } public void setShowMessage(Boolean showMessage) { this.showMessage = showMessage; } }