-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplantInfo.txt
71 lines (55 loc) · 1.33 KB
/
plantInfo.txt
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
public class plantInfo {
private String plantId,miniHeight,maxiHeight,plantType,name,color,imageFile;
public plantInfo(String plantId, String miniHeight, String maxiHeight, String plantType, String name, String color,
String imageFile) {
this.plantId = plantId;
this.miniHeight = miniHeight;
this.maxiHeight = maxiHeight;
this.plantType = plantType;
this.name = name;
this.color = color;
this.imageFile = imageFile;
}
public String getPlantId() {
return plantId;
}
public void setPlantId(String plantId) {
this.plantId = plantId;
}
public String getMiniHeight() {
return miniHeight;
}
public void setMiniHeight(String miniHeight) {
this.miniHeight = miniHeight;
}
public String getMaxiHeight() {
return maxiHeight;
}
public void setMaxiHeight(String maxiHeight) {
this.maxiHeight = maxiHeight;
}
public String getPlantType() {
return plantType;
}
public void setPlantType(String plantType) {
this.plantType = plantType;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
public String getImageFile() {
return imageFile;
}
public void setImageFile(String imageFile) {
this.imageFile = imageFile;
}
}