Back to project page RavenChat.
The source code is released under:
Copyright (c) 2014 Sumit Gouthaman. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Softwar...
If you think the Android project RavenChat 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.sumitgouthaman.raven.models; //from w ww . java 2 s.c o m /** * Created by sumit on 16/3/14. */ /** * Class to hold properties of a message */ public class Message { public String messageText; public long timestamp; public boolean receivedMessage; //true for received messages, false for sent messages }