Back to project page dcchat.
The source code is released under:
Apache License
If you think the Android project dcchat 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 net.kaleidos.dcchat; // w ww . jav a2 s .com public class Message { private String text; private String userSid; // if userSid is null it means the message comes directly from the hub public Message(String userSid, String text) { super(); this.text = text; this.userSid = userSid; } public String getText() { return text; } public String getUserSid() { return userSid; } }