Back to project page Realtime-Port-Authority.
The source code is released under:
Apache License
If you think the Android project Realtime-Port-Authority 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 rectangledbmi.com.pittsburghrealtimetracker.handlers.containers; //from ww w. j a v a 2s. co m /** * Created by epicstar on 12/20/14. */ public class ETAContainer { private String title; private String message; public ETAContainer(String title, String message) { setTitle(title); setMessage(message); } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } }