Skip to content

Commit e311e4a

Browse files
committed
Merge branch 'rosssgill-master'
Merge was required
2 parents 3f1b2b4 + 4b9f60d commit e311e4a

File tree

6 files changed

+258
-174
lines changed

6 files changed

+258
-174
lines changed
14.9 KB
Binary file not shown.

.idea/caches/build_file_checksums.ser

0 Bytes
Binary file not shown.

.idea/workspace.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
package com.example.offlinemaps;
2+
3+
public class Selfie {
4+
private String id;
5+
private String uid;
6+
private String timestamp;
7+
private double latitude;
8+
private double longitude;
9+
10+
11+
/**
12+
* Default constructor
13+
*/
14+
public Selfie() {
15+
super();
16+
}
17+
18+
/**
19+
* Constructor
20+
*
21+
* @param id selfie id
22+
* @param uid user id
23+
* @param timestamp time taken
24+
* @param latitude
25+
* @param longitude
26+
*/
27+
public Selfie(String id, String uid, String timestamp, double latitude, double longitude) {
28+
super();
29+
this.id = id;
30+
this.uid = uid;
31+
this.timestamp = timestamp;
32+
this.latitude = latitude;
33+
this.longitude = longitude;
34+
}
35+
36+
public String getId() {
37+
return id;
38+
}
39+
40+
public void setId(String id) {
41+
this.id = id;
42+
}
43+
44+
public String getUid() {
45+
return uid;
46+
}
47+
48+
public void setUid(String uid) {
49+
this.uid = uid;
50+
}
51+
52+
public String getTimestamp() {
53+
return timestamp;
54+
}
55+
56+
public void setTimestamp(String timestamp) {
57+
this.timestamp = timestamp;
58+
}
59+
60+
public double getLatitude() {
61+
return latitude;
62+
}
63+
64+
public void setLatitude(double latitude) {
65+
this.latitude = latitude;
66+
}
67+
68+
public double getLongitude() {
69+
return longitude;
70+
}
71+
72+
public void setLongitude(double longitude) {
73+
this.longitude = longitude;
74+
}
75+
}

0 commit comments

Comments
 (0)