Back to project page schat.
The source code is released under:
MIT License
If you think the Android project schat 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 data.contents; /*from w w w.j av a 2 s .c o m*/ import data.Content; /** * */ public class ChatContent extends Content { private String message; public ChatContent(String message) { this.type = Type.CHAT_MESSAGE; this.message = message; } public String getMessage() { return message; } public String toString() { return message; } }