01: /*
02: * Patient.java
03: *
04: * Created on 19 October 2006, 17:54
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package ie.beaumont.epilepsy;
11:
12: /**
13: *
14: * @author luano
15: */
16: public class Patient {
17: private int patientId;
18: private String name;
19:
20: /**
21: * Creates a new instance of Patient
22: */
23: public Patient() {
24: }
25:
26: public int getPatientId() {
27: return patientId;
28: }
29:
30: public void setPatientId(int id) {
31:
32: }
33:
34: public void setName(String n) {
35: name = n;
36: }
37:
38: public String getName() {
39: return name;
40: }
41: }
|