Back to project page HotSpot_Android.
The source code is released under:
GNU General Public License
If you think the Android project HotSpot_Android 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.ticknardif.hotspot.RESTresponses; //from www .j av a 2 s .c o m /** * Created by Vatsal on 11/8/2014. */ public class ChatroomUserResponse { public int chat_id; public int Room_Admin; public double Latitude; public double Longitude; public String Chat_title; public String Chat_Dscrpn; public ChatroomUserResponse(int chat_id, int room_admin, double Latitude, double Longitude, String chat_title, String chat_Dscrpn, String DisplayName) { this.chat_id = chat_id; this.Room_Admin = room_admin; this.Latitude = Latitude; this.Longitude = Longitude; this.Chat_title = chat_title; this.Chat_Dscrpn = chat_Dscrpn; } public String toString(){ return "Chat ID: " + chat_id + " Chat Title: " + Chat_title +" Room Admin: " + " Chat Description: " + Chat_Dscrpn + Room_Admin + " Latitude: " + Latitude + " Longitude: " + Longitude; } }