blob: 1aca80bfbdda3a78174d0a97ce554a844ab83213 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
package org.marcinzelent.liberavem;
import com.google.gson.annotations.SerializedName;
import java.io.Serializable;
public class Observation implements Serializable {
@SerializedName("BirdId")
private int birdId;
@SerializedName("Comment")
private String comment;
@SerializedName("Created")
private String created;
@SerializedName("Id")
private int id;
@SerializedName("Latitude")
private double latitude;
@SerializedName("Longitude")
private double longitude;
@SerializedName("Placename")
private String placeName;
@SerializedName("Population")
private int population;
@SerializedName("UserId")
private String userId;
@SerializedName("NameDanish")
private String nameDanish;
@SerializedName("NameEnglish")
private String nameEnglish;
public Observation(int id, String created, double latitude, double longitude, String placeName,
String comment, String userId, int birdId, String nameEnglish,
String nameDanish, int population) {
this.birdId = birdId;
this.comment = comment;
this.created = created;
this.id = id;
this.latitude = latitude;
this.longitude = longitude;
this.placeName = placeName;
this.population = population;
this.userId = userId;
this.nameDanish = nameDanish;
this.nameEnglish = nameEnglish;
}
public int getBirdId() {
return birdId;
}
public void setBirdId(int birdId) {
this.birdId = birdId;
}
public String getComment() {
return comment;
}
public void setComment(String comment) {
this.comment = comment;
}
public String getCreated() {
return created;
}
public void setCreated(String created) {
this.created = created;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public double getLatitude() {
return latitude;
}
public void setLatitude(double latitude) {
this.latitude = latitude;
}
public double getLongitude() {
return longitude;
}
public void setLongitude(double longitude) {
this.longitude = longitude;
}
public String getPlaceName() {
return placeName;
}
public void setPlaceName(String placeName) {
this.placeName = placeName;
}
public int getPopulation() {
return population;
}
public void setPopulation(int population) {
this.population = population;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getNameDanish() {
return nameDanish;
}
public String getNameEnglish() {
return nameEnglish;
}
public void setNameEnglish(String nameEnglish) {
this.nameEnglish = nameEnglish;
}
}
|