Back to project page passby.
The source code is released under:
Copyright 2014 Firebase, https://www.firebase.com/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ?Software??...
If you think the Android project passby listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
//#CSIT6000B# Rio He 20227977 yheas@connect.ust.hk //#CSIT6000B# Cedric Liang 20220395 zliangag@connect.ust.hk //#CSIT6000B# Kevin Wang 20225577 zwangbo@connect.ust.hk package com.firebase.androidchat; //from ww w.j av a 2 s . c om public class Chat { private String message; private String author; // Required default constructor for Firebase object mapping @SuppressWarnings("unused") private Chat() { } Chat(String message, String author) { this.message = message; this.author = author; } public String getMessage() { return message; } public String getAuthor() { return author; } }