Back to project page SymptomManagement.
The source code is released under:
Apache License
If you think the Android project SymptomManagement listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.android.capstone.data; /*from www . j ava 2 s.c om*/ import java.util.ArrayList; import java.util.List; public class Medications{ private Long medicationId; private Long doctorId; private Long patientId; private List<String> medications; public Medications() { medications = new ArrayList<String>(); } public Medications(Long doctorId, Long patientId, List<String> medications) { super(); this.doctorId = doctorId; this.patientId = patientId; this.medications = medications; } public Long getMedicationId() { return medicationId; } public void setMedicationId(Long medicationId) { this.medicationId = medicationId; } public Long getDoctorId() { return doctorId; } public void setDoctorId(Long doctorId) { this.doctorId = doctorId; } public Long getPatientId() { return patientId; } public void setPatientId(Long patientId) { this.patientId = patientId; } public List<String> getMedications() { return medications; } public void setMedications(List<String> medications) { this.medications = medications; } }