Subversion Repositories Code-Repo

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
87 Kevin 1
package org.vt.ece4564.latmb;
2
 
3
import java.util.Calendar;
4
 
5
public class LATMBMessage {
6
	private String message;
7
	private Calendar timestamp;
8
	private Calendar expiration;
9
	private String username;
10
	private String chatroom;
11
	private double latitude;
12
	private double longitude;
13
	private double radius;
14
 
15
	public String getMessage() {
16
		return message;
17
	}
18
	public void setMessage(String message) {
19
		this.message = message;
20
	}
21
	public Calendar getTimestamp() {
22
		return timestamp;
23
	}
24
	public void setTimestamp(Calendar timestamp) {
25
		this.timestamp = timestamp;
26
	}
27
	public Calendar getExpiration() {
28
		return expiration;
29
	}
30
	public void setExpiration(Calendar expiration) {
31
		this.expiration = expiration;
32
	}
33
	public String getUsername() {
34
		return username;
35
	}
36
	public void setUsername(String username) {
37
		this.username = username;
38
	}
39
	public String getChatroom() {
40
		return chatroom;
41
	}
42
	public void setChatroom(String chatroom) {
43
		this.chatroom = chatroom;
44
	}
45
	public double getLatitude() {
46
		return latitude;
47
	}
48
	public void setLatitude(double latitude) {
49
		this.latitude = latitude;
50
	}
51
	public double getLongitude() {
52
		return longitude;
53
	}
54
	public void setLongitude(double longitude) {
55
		this.longitude = longitude;
56
	}
57
	public double getRadius() {
58
		return radius;
59
	}
60
	public void setRadius(double radius) {
61
		this.radius = radius;
62
	}
63
 
64
 
65
}