Back to project page bumper.
The source code is released under:
MIT License
If you think the Android project bumper 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.varwise.bumper; /*from w w w .jav a2 s . c om*/ /** * Created by rembam on 12.07.14. */ public class ScreenInformation { private String screenName; private String bottomInformation; private Integer number; private Boolean done; public String getScreenName() { return screenName; } public void setScreenName(String screenName) { this.screenName = screenName; } public String getBottomInformation() { return bottomInformation; } public void setBottomInformation(String bottomInformation) { this.bottomInformation = bottomInformation; } public Integer getNumber() { return number; } public void setNumber(Integer number) { this.number = number; } public Boolean getDone() { return done; } public void setDone(Boolean number) { this.done = number; } }