-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEmergencyDB.java
More file actions
123 lines (95 loc) · 2.65 KB
/
EmergencyDB.java
File metadata and controls
123 lines (95 loc) · 2.65 KB
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
package com.example.abans_000.docplus;
/**
* Created by abans_000 on 02-11-2016.
*/
public class EmergencyDB {
private int _id,_age;
private String _sex,_dob,_address,_mobile,_condition,_history,_namevisit,_relation,_mobvisit,_name;
public EmergencyDB(){
}
public EmergencyDB(int _age, String _sex, String _dob, String _address, String _mobile, String _condition, String _history, String _namevisit, String _relation, String _mobvisit, String _name) {
this._age = _age;
this._sex = _sex;
this._dob = _dob;
this._address = _address;
this._mobile = _mobile;
this._condition = _condition;
this._history = _history;
this._namevisit = _namevisit;
this._relation = _relation;
this._mobvisit = _mobvisit;
this._name = _name;
}
public void set_id(int _id) {
this._id = _id;
}
public void set_age(int _age) {
this._age = _age;
}
public void set_sex(String _sex) {
this._sex = _sex;
}
public void set_dob(String _dob) {
this._dob = _dob;
}
public void set_address(String _address) {
this._address = _address;
}
public void set_mobile(String _mobile) {
this._mobile = _mobile;
}
public void set_condition(String _condition) {
this._condition = _condition;
}
public void set_history(String _history) {
this._history = _history;
}
public void set_namevisit(String _namevisit) {
this._namevisit = _namevisit;
}
public void set_relation(String _relation) {
this._relation = _relation;
}
public void set_mobvisit(String _mobvisit) {
this._mobvisit = _mobvisit;
}
public void set_name(String _name) {
this._name = _name;
}
public int get_id() {
return _id;
}
public int get_age() {
return _age;
}
public String get_sex() {
return _sex;
}
public String get_dob() {
return _dob;
}
public String get_address() {
return _address;
}
public String get_mobile() {
return _mobile;
}
public String get_condition() {
return _condition;
}
public String get_history() {
return _history;
}
public String get_namevisit() {
return _namevisit;
}
public String get_relation() {
return _relation;
}
public String get_mobvisit() {
return _mobvisit;
}
public String get_name() {
return _name;
}
}