SlideShare a Scribd company logo
1 of 33
cs320_final_project_code/medicalApplication/.classpath
cs320_final_project_code/medicalApplication/.DS_Store
cs320_final_project_code/medicalApplication/.project
medicalApplication
org.eclipse.jdt.core.javabuilder
org.eclipse.m2e.core.maven2Builder
org.eclipse.jdt.core.javanature
org.eclipse.m2e.core.maven2Nature
cs320_final_project_code/medicalApplication/.settings/org.eclip
se.core.resources.prefs
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/test/java=UTF-8
encoding/<project>=UTF-8
cs320_final_project_code/medicalApplication/.settings/org.eclip
se.jdt.core.prefs
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enable
d
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warn
ing
org.eclipse.jdt.core.compiler.source=1.8
cs320_final_project_code/medicalApplication/.settings/org.eclip
se.m2e.core.prefs
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
cs320_final_project_code/medicalApplication/pom.xml
4.0.0
medical.com
medicalApplication
0.0.1-SNAPSHOT
jar
medicalApplication
http://maven.apache.org
UTF-8
org.seleniumhq.selenium
selenium-java
2.47.1
junit
junit
4.10
test
info.cukes
cucumber-java
1.0.2
test
cs320_final_project_code/medicalApplication/src/.DS_Store
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/App.javacs320_final_project_cod
e/medicalApplication/src/main/java/medical/com/medicalApplic
ation/App.javapackage medical.com.medicalApplication;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
import medical.com.medicalApplication.model.Employee;
import medical.com.medicalApplication.prompts.MedicalRecord
Prompt;
import medical.com.medicalApplication.services.DoctorService;
import medical.com.medicalApplication.services.MedicalRescor
dService;
import medical.com.medicalApplication.util.MenuUtil;
import medical.com.medicalApplication.util.Pair;
//Add duplicate doctors
//Adding medical records
//Find Allergies per patient
publicclassApp{
privatestaticList<String> mainMenu =Arrays.asList("","Main M
enu","Please select from the following options",
"1 Print Patient List","2 Print Doctor List","3 Add a Doctor","4
Add a Patient","5 Medical Records",
"6 Search for Allergies","0 to Exit");
publicstaticvoid main(String[] args){
//Created for testing purposes password is "Open"
Employee employee =newEmployee("Mike","1111");
//Read console input
Scanner scanner =newScanner(System.in);
scanner.useDelimiter(System.getProperty("line.separator")
);
int passwordAttepts =3;
String password =null;
boolean loginSuccess =false;
//Login
while(passwordAttepts >0&&!loginSuccess){
System.out.println("Login Enter Password");
password = scanner.next();
loginSuccess = employee.getPassword().equals(passwor
d);
passwordAttepts--;
}
if(loginSuccess){
MedicalRecordPrompt medicalRecordPrompt =newMedicalReco
rdPrompt();
int input =-1;
System.out.println("Welcome to Mercy Hospitol System");
while(input !=0){
mainMenu.stream().forEach(System.out::println);
input = scanner.nextInt();
switch(input){
case1:
MedicalRescordService.getReference().getAllPatients().forEach
(System.out::println);
break;
case2:
DoctorService.getReference().getAllDoctors().forEach(System.o
ut::println);
break;
case3:
addPerson(true, scanner);
break;
case4:
addPerson(false, scanner);
break;
case5:
medicalRecordPrompt.mainPrompt(scanner);
break;
case6:
medicalRecordPrompt.findAllPatientsWithAllergy
(scanner).forEach(System.out::println);
break;
case0:
System.out.println("Good bye!");
break;
default:
break;
}
}
scanner.close();
}else{
System.out.println("Invalid Password after 3 tries");
}
}
privatestaticvoid addPerson(boolean addDoctor,Scanner scanner
){
int input =-1;
String person = addDoctor ?"Doctor":"Patient";
while(input !=0){
Pair response =MenuUtil.createTwoItemMenu(scanner,"Enter N
ame:","Enter ID:");
boolean personAdded =false;
if(addDoctor){
personAdded =DoctorService.getReference().addDoct
or(response.getOne(), response.getTwo());
}else{
personAdded =MedicalRescordService.getReference(
).addPatient(response.getOne(), response.getTwo());
}
if(personAdded){
System.out.println(person +" "+ response.getOne()+" was succe
sfully addedn");
}else{
System.out.println(person +" "+ response.getOne()+" Could not
be addedn");
}
System.out.println(
"Would you like to add another "+ person +"?n 1 for Yesn 0 T
o return to the Main Menu");
input = scanner.nextInt();
}
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Allergey.javacs320_final_
project_code/medicalApplication/src/main/java/medical/com/me
dicalApplication/model/Allergey.javapackage medical.com.medi
calApplication.model;
/**
* This class represent the Allergy model in the application
*
*/
publicclassAllergey{
privateString name;
publicAllergey(String name){
this.name = name;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
@Override
publicString toString(){
return"Allergy "+ name;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Doctor.javacs320_final_pr
oject_code/medicalApplication/src/main/java/medical/com/medi
calApplication/model/Doctor.javapackage medical.com.medical
Application.model;
/**
*
* This class represents the Doctor data model in the system
*
*/
publicclassDoctor{
privateString name;
privateString id;
publicDoctor(String name,String id){
super();
this.name = name;
this.id = id;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
publicString getId(){
return id;
}
publicvoid setId(String id){
this.id = id;
}
@Override
publicString toString(){
return"Doctor Name:"+ name +" ID: "+id;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Employee.javacs320_final
_project_code/medicalApplication/src/main/java/medical/com/m
edicalApplication/model/Employee.javapackage medical.com.m
edicalApplication.model;
/**
*
* This class represents the employee model in the system
*
*/
publicclassEmployee{
privateString name;
privateString id;
privateString password;
publicEmployee(String name,String id){
super();
this.name = name;
this.id = id;
this.password ="Open";
}
publicString getName(){
return name;
}
publicString getId(){
return id;
}
publicString getPassword(){
return password;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/MedicalRecord.javacs320_
final_project_code/medicalApplication/src/main/java/medical/c
om/medicalApplication/model/MedicalRecord.javapackage medi
cal.com.medicalApplication.model;
/**
*
*
* This class represents a medical record model in the system
*
*/
publicclassMedicalRecord{
privatePatient patient;
privatePatientHistory history;
publicMedicalRecord(Patient patient){
super();
this.patient = patient;
this.history =newPatientHistory();
}
publicPatient getPatient(){
return patient;
}
publicPatientHistory getHistory(){
return history;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Medication.javacs320_fina
l_project_code/medicalApplication/src/main/java/medical/com/
medicalApplication/model/Medication.javapackage medical.com
.medicalApplication.model;
/**
*
* This class represents the mediation model in the system
*
*/
publicclassMedication{
privateString name;
privateString startDate;
privateString endDate;
privateString dose;
publicMedication(String name,String startDate,String endDate,S
tring dose){
super();
this.name = name;
this.startDate = startDate;
this.endDate = endDate;
this.dose = dose;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
publicString getStartDate(){
return startDate;
}
publicvoid setStartDate(String startDate){
this.startDate = startDate;
}
publicString getEndDate(){
return endDate;
}
publicvoid setEndDate(String endDate){
this.endDate = endDate;
}
publicString getDose(){
return dose;
}
publicvoid setDose(String dose){
this.dose = dose;
}
@Override
publicString toString(){
return"Medication:"+name +" Start Date: "+ startDate +" End D
ate: "+endDate+" Dose: "+dose;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Patient.javacs320_final_pr
oject_code/medicalApplication/src/main/java/medical/com/medi
calApplication/model/Patient.javapackage medical.com.medical
Application.model;
/**
*
* This class represents a patient model in the system
*
*/
publicclassPatient{
privateString name;
privateString id;
publicPatient(String name,String id){
super();
this.name = name;
this.id = id;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
publicString getId(){
return id;
}
publicvoid setId(String id){
this.id = id;
}
@Override
publicString toString(){
return"Patient Name: "+name+" ID: "+id;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/PatientHistory.javacs320_
final_project_code/medicalApplication/src/main/java/medical/c
om/medicalApplication/model/PatientHistory.javapackage medi
cal.com.medicalApplication.model;
import java.util.ArrayList;
import java.util.List;
/**
*
* This class represents a patient history model in the system
*
*/
publicclassPatientHistory{
privateList<Treatment> treatments;
privateList<Medication> medications;
privateList<Allergey> allergy;
publicPatientHistory(){
this.treatments =newArrayList<Treatment>();
this.medications =newArrayList<Medication>();
this.allergy =newArrayList<Allergey>();
}
publicvoid addTreatment(Treatment treatment){
treatments.add(treatment);
}
publicvoid addAllergy(Allergey allegry){
allergy.add(allegry);
}
publicvoid addMedication(Medication medication){
if(treatments !=null){
medications.add(medication);
}
}
publicList<Allergey> getAlergies(){
return allergy;
}
publicList<Treatment> getAllTreatments(){
return treatments;
}
publicList<Medication> getAllMedications(){
return medications;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Treatment.javacs320_final
_project_code/medicalApplication/src/main/java/medical/com/m
edicalApplication/model/Treatment.javapackage medical.com.m
edicalApplication.model;
/**
*
* This class represents a treatment model in the system.
*
*/
publicclassTreatment{
privateString treatmentDate;
privateString diagnose;
privateString description;
publicTreatment(String treatmentDate,String diagnose,String de
scription){
super();
this.treatmentDate = treatmentDate;
this.diagnose = diagnose;
this.…
CS 320 Final Project Test Plan
I. Feature Requirements: This test plan will document unit
testing requirements for accepting the
medical record system (MRS). The MRS will have the following
features that must be tested to
ensure the quality of the product:
allow the user to log in and
add a doctor to the list of doctors. Doctors’ names do not have
to be unique, but
doctors’ IDs should be unique.
allow the user to add a
medical record to a patient.
i. Add a patient.
ii. Add a medical record with treatments, medications, and
allergies.
o When you create a medical record, it is necessary to create a
patient
history, which will contain 1 to many treatments, 1 to many
medications,
and 1 to many allergies. Medications cannot be assigned to a
patient
history unless there has been a treatment first.
the user to search for
allergies and print all patients with allergies.
II. Roles: The software developer will perform unit tests.
III. Testing levels
i. Unit testing
IV. Testing artifacts: The deliverable for this project will be a
zip file containing all the JUnit tests.
cs320_final_project_code/medicalApplication/.classpath
cs320_final_project_code/medicalApplication/.DS_Store
cs320_final_project_code/medicalApplication/.project
medicalApplication
org.eclipse.jdt.core.javabuilder
org.eclipse.m2e.core.maven2Builder
org.eclipse.jdt.core.javanature
org.eclipse.m2e.core.maven2Nature
cs320_final_project_code/medicalApplication/.settings/org.eclip
se.core.resources.prefs
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/test/java=UTF-8
encoding/<project>=UTF-8
cs320_final_project_code/medicalApplication/.settings/org.eclip
se.jdt.core.prefs
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enable
d
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warn
ing
org.eclipse.jdt.core.compiler.source=1.8
cs320_final_project_code/medicalApplication/.settings/org.eclip
se.m2e.core.prefs
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
cs320_final_project_code/medicalApplication/pom.xml
4.0.0
medical.com
medicalApplication
0.0.1-SNAPSHOT
jar
medicalApplication
http://maven.apache.org
UTF-8
org.seleniumhq.selenium
selenium-java
2.47.1
junit
junit
4.10
test
info.cukes
cucumber-java
1.0.2
test
cs320_final_project_code/medicalApplication/src/.DS_Store
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/App.javacs320_final_project_cod
e/medicalApplication/src/main/java/medical/com/medicalApplic
ation/App.javapackage medical.com.medicalApplication;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
import medical.com.medicalApplication.model.Employee;
import medical.com.medicalApplication.prompts.MedicalRecord
Prompt;
import medical.com.medicalApplication.services.DoctorService;
import medical.com.medicalApplication.services.MedicalRescor
dService;
import medical.com.medicalApplication.util.MenuUtil;
import medical.com.medicalApplication.util.Pair;
//Add duplicate doctors
//Adding medical records
//Find Allergies per patient
publicclassApp{
privatestaticList<String> mainMenu =Arrays.asList("","Main M
enu","Please select from the following options",
"1 Print Patient List","2 Print Doctor List","3 Add a Doctor","4
Add a Patient","5 Medical Records",
"6 Search for Allergies","0 to Exit");
publicstaticvoid main(String[] args){
//Created for testing purposes password is "Open"
Employee employee =newEmployee("Mike","1111");
//Read console input
Scanner scanner =newScanner(System.in);
scanner.useDelimiter(System.getProperty("line.separator")
);
int passwordAttepts =3;
String password =null;
boolean loginSuccess =false;
//Login
while(passwordAttepts >0&&!loginSuccess){
System.out.println("Login Enter Password");
password = scanner.next();
loginSuccess = employee.getPassword().equals(passwor
d);
passwordAttepts--;
}
if(loginSuccess){
MedicalRecordPrompt medicalRecordPrompt =newMedicalReco
rdPrompt();
int input =-1;
System.out.println("Welcome to Mercy Hospitol System");
while(input !=0){
mainMenu.stream().forEach(System.out::println);
input = scanner.nextInt();
switch(input){
case1:
MedicalRescordService.getReference().getAllPatients().forEach
(System.out::println);
break;
case2:
DoctorService.getReference().getAllDoctors().forEach(System.o
ut::println);
break;
case3:
addPerson(true, scanner);
break;
case4:
addPerson(false, scanner);
break;
case5:
medicalRecordPrompt.mainPrompt(scanner);
break;
case6:
medicalRecordPrompt.findAllPatientsWithAllergy
(scanner).forEach(System.out::println);
break;
case0:
System.out.println("Good bye!");
break;
default:
break;
}
}
scanner.close();
}else{
System.out.println("Invalid Password after 3 tries");
}
}
privatestaticvoid addPerson(boolean addDoctor,Scanner scanner
){
int input =-1;
String person = addDoctor ?"Doctor":"Patient";
while(input !=0){
Pair response =MenuUtil.createTwoItemMenu(scanner,"Enter N
ame:","Enter ID:");
boolean personAdded =false;
if(addDoctor){
personAdded =DoctorService.getReference().addDoct
or(response.getOne(), response.getTwo());
}else{
personAdded =MedicalRescordService.getReference(
).addPatient(response.getOne(), response.getTwo());
}
if(personAdded){
System.out.println(person +" "+ response.getOne()+" was succe
sfully addedn");
}else{
System.out.println(person +" "+ response.getOne()+" Could not
be addedn");
}
System.out.println(
"Would you like to add another "+ person +"?n 1 for Yesn 0 T
o return to the Main Menu");
input = scanner.nextInt();
}
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Allergey.javacs320_final_
project_code/medicalApplication/src/main/java/medical/com/me
dicalApplication/model/Allergey.javapackage medical.com.medi
calApplication.model;
/**
* This class represent the Allergy model in the application
*
*/
publicclassAllergey{
privateString name;
publicAllergey(String name){
this.name = name;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
@Override
publicString toString(){
return"Allergy "+ name;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Doctor.javacs320_final_pr
oject_code/medicalApplication/src/main/java/medical/com/medi
calApplication/model/Doctor.javapackage medical.com.medical
Application.model;
/**
*
* This class represents the Doctor data model in the system
*
*/
publicclassDoctor{
privateString name;
privateString id;
publicDoctor(String name,String id){
super();
this.name = name;
this.id = id;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
publicString getId(){
return id;
}
publicvoid setId(String id){
this.id = id;
}
@Override
publicString toString(){
return"Doctor Name:"+ name +" ID: "+id;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Employee.javacs320_final
_project_code/medicalApplication/src/main/java/medical/com/m
edicalApplication/model/Employee.javapackage medical.com.m
edicalApplication.model;
/**
*
* This class represents the employee model in the system
*
*/
publicclassEmployee{
privateString name;
privateString id;
privateString password;
publicEmployee(String name,String id){
super();
this.name = name;
this.id = id;
this.password ="Open";
}
publicString getName(){
return name;
}
publicString getId(){
return id;
}
publicString getPassword(){
return password;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/MedicalRecord.javacs320_
final_project_code/medicalApplication/src/main/java/medical/c
om/medicalApplication/model/MedicalRecord.javapackage medi
cal.com.medicalApplication.model;
/**
*
*
* This class represents a medical record model in the system
*
*/
publicclassMedicalRecord{
privatePatient patient;
privatePatientHistory history;
publicMedicalRecord(Patient patient){
super();
this.patient = patient;
this.history =newPatientHistory();
}
publicPatient getPatient(){
return patient;
}
publicPatientHistory getHistory(){
return history;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Medication.javacs320_fina
l_project_code/medicalApplication/src/main/java/medical/com/
medicalApplication/model/Medication.javapackage medical.com
.medicalApplication.model;
/**
*
* This class represents the mediation model in the system
*
*/
publicclassMedication{
privateString name;
privateString startDate;
privateString endDate;
privateString dose;
publicMedication(String name,String startDate,String endDate,S
tring dose){
super();
this.name = name;
this.startDate = startDate;
this.endDate = endDate;
this.dose = dose;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
publicString getStartDate(){
return startDate;
}
publicvoid setStartDate(String startDate){
this.startDate = startDate;
}
publicString getEndDate(){
return endDate;
}
publicvoid setEndDate(String endDate){
this.endDate = endDate;
}
publicString getDose(){
return dose;
}
publicvoid setDose(String dose){
this.dose = dose;
}
@Override
publicString toString(){
return"Medication:"+name +" Start Date: "+ startDate +" End D
ate: "+endDate+" Dose: "+dose;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Patient.javacs320_final_pr
oject_code/medicalApplication/src/main/java/medical/com/medi
calApplication/model/Patient.javapackage medical.com.medical
Application.model;
/**
*
* This class represents a patient model in the system
*
*/
publicclassPatient{
privateString name;
privateString id;
publicPatient(String name,String id){
super();
this.name = name;
this.id = id;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
publicString getId(){
return id;
}
publicvoid setId(String id){
this.id = id;
}
@Override
publicString toString(){
return"Patient Name: "+name+" ID: "+id;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/PatientHistory.javacs320_
final_project_code/medicalApplication/src/main/java/medical/c
om/medicalApplication/model/PatientHistory.javapackage medi
cal.com.medicalApplication.model;
import java.util.ArrayList;
import java.util.List;
/**
*
* This class represents a patient history model in the system
*
*/
publicclassPatientHistory{
privateList<Treatment> treatments;
privateList<Medication> medications;
privateList<Allergey> allergy;
publicPatientHistory(){
this.treatments =newArrayList<Treatment>();
this.medications =newArrayList<Medication>();
this.allergy =newArrayList<Allergey>();
}
publicvoid addTreatment(Treatment treatment){
treatments.add(treatment);
}
publicvoid addAllergy(Allergey allegry){
allergy.add(allegry);
}
publicvoid addMedication(Medication medication){
if(treatments !=null){
medications.add(medication);
}
}
publicList<Allergey> getAlergies(){
return allergy;
}
publicList<Treatment> getAllTreatments(){
return treatments;
}
publicList<Medication> getAllMedications(){
return medications;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Treatment.javacs320_final
_project_code/medicalApplication/src/main/java/medical/com/m
edicalApplication/model/Treatment.javapackage medical.com.m
edicalApplication.model;
/**
*
* This class represents a treatment model in the system.
*
*/
publicclassTreatment{
privateString treatmentDate;
privateString diagnose;
privateString description;
publicTreatment(String treatmentDate,String diagnose,String de
scription){
super();
this.treatmentDate = treatmentDate;
…

More Related Content

Similar to cs320_final_project_codemedicalApplication.classpathcs320_.docx

Question IYou are going to use the semaphores for process sy.docx
Question IYou are going to use the semaphores for process sy.docxQuestion IYou are going to use the semaphores for process sy.docx
Question IYou are going to use the semaphores for process sy.docx
audeleypearl
 
.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx
.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx
.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx
mercysuttle
 
Assignment #2.classpathAssignment #2.project Assig.docx
Assignment #2.classpathAssignment #2.project  Assig.docxAssignment #2.classpathAssignment #2.project  Assig.docx
Assignment #2.classpathAssignment #2.project Assig.docx
fredharris32
 
AlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docx
AlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docxAlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docx
AlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docx
galerussel59292
 

Similar to cs320_final_project_codemedicalApplication.classpathcs320_.docx (20)

Presentacion clean code
Presentacion clean codePresentacion clean code
Presentacion clean code
 
Question IYou are going to use the semaphores for process sy.docx
Question IYou are going to use the semaphores for process sy.docxQuestion IYou are going to use the semaphores for process sy.docx
Question IYou are going to use the semaphores for process sy.docx
 
#18.스프링프레임워크 & 마이바티스 (Spring Framework, MyBatis)_국비지원IT학원/실업자/재직자환급교육/자바/스프링/...
#18.스프링프레임워크 & 마이바티스 (Spring Framework, MyBatis)_국비지원IT학원/실업자/재직자환급교육/자바/스프링/...#18.스프링프레임워크 & 마이바티스 (Spring Framework, MyBatis)_국비지원IT학원/실업자/재직자환급교육/자바/스프링/...
#18.스프링프레임워크 & 마이바티스 (Spring Framework, MyBatis)_국비지원IT학원/실업자/재직자환급교육/자바/스프링/...
 
.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx
.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx
.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx
 
Building Modern Apps using Android Architecture Components
Building Modern Apps using Android Architecture ComponentsBuilding Modern Apps using Android Architecture Components
Building Modern Apps using Android Architecture Components
 
Morgagebuildclasses.netbeans_automatic_buildMorgagebui.docx
Morgagebuildclasses.netbeans_automatic_buildMorgagebui.docxMorgagebuildclasses.netbeans_automatic_buildMorgagebui.docx
Morgagebuildclasses.netbeans_automatic_buildMorgagebui.docx
 
Assignment #2.classpathAssignment #2.project Assig.docx
Assignment #2.classpathAssignment #2.project  Assig.docxAssignment #2.classpathAssignment #2.project  Assig.docx
Assignment #2.classpathAssignment #2.project Assig.docx
 
SQLite Database Tutorial In Android
SQLite Database Tutorial In AndroidSQLite Database Tutorial In Android
SQLite Database Tutorial In Android
 
Sqladria 2009 SRC
Sqladria 2009 SRCSqladria 2009 SRC
Sqladria 2009 SRC
 
Total Compensationbuild.xml Builds, tests, and runs th.docx
Total Compensationbuild.xml      Builds, tests, and runs th.docxTotal Compensationbuild.xml      Builds, tests, and runs th.docx
Total Compensationbuild.xml Builds, tests, and runs th.docx
 
Ten useful JavaScript tips & best practices
Ten useful JavaScript tips & best practicesTen useful JavaScript tips & best practices
Ten useful JavaScript tips & best practices
 
JPA 2.0
JPA 2.0JPA 2.0
JPA 2.0
 
Spring hibernate jsf_primefaces_intergration
Spring hibernate jsf_primefaces_intergrationSpring hibernate jsf_primefaces_intergration
Spring hibernate jsf_primefaces_intergration
 
Bring the fun back to java
Bring the fun back to javaBring the fun back to java
Bring the fun back to java
 
Zend Framework 1.9 Setup & Using Zend_Tool
Zend Framework 1.9 Setup & Using Zend_ToolZend Framework 1.9 Setup & Using Zend_Tool
Zend Framework 1.9 Setup & Using Zend_Tool
 
JSUG - Google Guice by Jan Zarnikov
JSUG - Google Guice by Jan ZarnikovJSUG - Google Guice by Jan Zarnikov
JSUG - Google Guice by Jan Zarnikov
 
spring-tutorial
spring-tutorialspring-tutorial
spring-tutorial
 
Struts database access
Struts database accessStruts database access
Struts database access
 
AlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docx
AlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docxAlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docx
AlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docx
 
Zend Framework 2 - Basic Components
Zend Framework 2  - Basic ComponentsZend Framework 2  - Basic Components
Zend Framework 2 - Basic Components
 

More from mydrynan

CSIA 413 Cybersecurity Policy, Plans, and Programs.docx
CSIA 413 Cybersecurity Policy, Plans, and Programs.docxCSIA 413 Cybersecurity Policy, Plans, and Programs.docx
CSIA 413 Cybersecurity Policy, Plans, and Programs.docx
mydrynan
 
CSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docx
CSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docxCSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docx
CSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docx
mydrynan
 
CSI Paper Grading Rubric- (worth a possible 100 points) .docx
CSI Paper Grading Rubric- (worth a possible 100 points)   .docxCSI Paper Grading Rubric- (worth a possible 100 points)   .docx
CSI Paper Grading Rubric- (worth a possible 100 points) .docx
mydrynan
 
CSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docx
CSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docxCSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docx
CSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docx
mydrynan
 
CSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docx
CSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docxCSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docx
CSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docx
mydrynan
 
CSE422 Section 002 – Computer Networking Fall 2018 Ho.docx
CSE422 Section 002 – Computer Networking Fall 2018  Ho.docxCSE422 Section 002 – Computer Networking Fall 2018  Ho.docx
CSE422 Section 002 – Computer Networking Fall 2018 Ho.docx
mydrynan
 
CSCI  132  Practical  Unix  and  Programming   .docx
CSCI  132  Practical  Unix  and  Programming   .docxCSCI  132  Practical  Unix  and  Programming   .docx
CSCI  132  Practical  Unix  and  Programming   .docx
mydrynan
 
CSCI 714 Software Project Planning and EstimationLec.docx
CSCI 714 Software Project Planning and EstimationLec.docxCSCI 714 Software Project Planning and EstimationLec.docx
CSCI 714 Software Project Planning and EstimationLec.docx
mydrynan
 
CSCI 561Research Paper Topic Proposal and Outline Instructions.docx
CSCI 561Research Paper Topic Proposal and Outline Instructions.docxCSCI 561Research Paper Topic Proposal and Outline Instructions.docx
CSCI 561Research Paper Topic Proposal and Outline Instructions.docx
mydrynan
 
CSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docx
CSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docxCSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docx
CSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docx
mydrynan
 
CryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docx
CryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docxCryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docx
CryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docx
mydrynan
 
CSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docx
CSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docxCSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docx
CSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docx
mydrynan
 
CSCE 1040 Homework 2 For this assignment we are going to .docx
CSCE 1040 Homework 2  For this assignment we are going to .docxCSCE 1040 Homework 2  For this assignment we are going to .docx
CSCE 1040 Homework 2 For this assignment we are going to .docx
mydrynan
 
CSCE509–Spring2019Assignment3updated01May19DU.docx
CSCE509–Spring2019Assignment3updated01May19DU.docxCSCE509–Spring2019Assignment3updated01May19DU.docx
CSCE509–Spring2019Assignment3updated01May19DU.docx
mydrynan
 
CSCI 2033 Elementary Computational Linear Algebra(Spring 20.docx
CSCI 2033 Elementary Computational Linear Algebra(Spring 20.docxCSCI 2033 Elementary Computational Linear Algebra(Spring 20.docx
CSCI 2033 Elementary Computational Linear Algebra(Spring 20.docx
mydrynan
 
CSCE 3110 Data Structures & Algorithms Summer 2019 1 of .docx
CSCE 3110 Data Structures & Algorithms Summer 2019   1 of .docxCSCE 3110 Data Structures & Algorithms Summer 2019   1 of .docx
CSCE 3110 Data Structures & Algorithms Summer 2019 1 of .docx
mydrynan
 
CSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docx
CSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docxCSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docx
CSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docx
mydrynan
 
CSC-321 Final Writing Assignment In this assignment, you .docx
CSC-321 Final Writing Assignment  In this assignment, you .docxCSC-321 Final Writing Assignment  In this assignment, you .docx
CSC-321 Final Writing Assignment In this assignment, you .docx
mydrynan
 
Cryptography is the application of algorithms to ensure the confiden.docx
Cryptography is the application of algorithms to ensure the confiden.docxCryptography is the application of algorithms to ensure the confiden.docx
Cryptography is the application of algorithms to ensure the confiden.docx
mydrynan
 
CSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docx
CSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docxCSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docx
CSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docx
mydrynan
 

More from mydrynan (20)

CSIA 413 Cybersecurity Policy, Plans, and Programs.docx
CSIA 413 Cybersecurity Policy, Plans, and Programs.docxCSIA 413 Cybersecurity Policy, Plans, and Programs.docx
CSIA 413 Cybersecurity Policy, Plans, and Programs.docx
 
CSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docx
CSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docxCSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docx
CSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docx
 
CSI Paper Grading Rubric- (worth a possible 100 points) .docx
CSI Paper Grading Rubric- (worth a possible 100 points)   .docxCSI Paper Grading Rubric- (worth a possible 100 points)   .docx
CSI Paper Grading Rubric- (worth a possible 100 points) .docx
 
CSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docx
CSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docxCSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docx
CSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docx
 
CSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docx
CSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docxCSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docx
CSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docx
 
CSE422 Section 002 – Computer Networking Fall 2018 Ho.docx
CSE422 Section 002 – Computer Networking Fall 2018  Ho.docxCSE422 Section 002 – Computer Networking Fall 2018  Ho.docx
CSE422 Section 002 – Computer Networking Fall 2018 Ho.docx
 
CSCI  132  Practical  Unix  and  Programming   .docx
CSCI  132  Practical  Unix  and  Programming   .docxCSCI  132  Practical  Unix  and  Programming   .docx
CSCI  132  Practical  Unix  and  Programming   .docx
 
CSCI 714 Software Project Planning and EstimationLec.docx
CSCI 714 Software Project Planning and EstimationLec.docxCSCI 714 Software Project Planning and EstimationLec.docx
CSCI 714 Software Project Planning and EstimationLec.docx
 
CSCI 561Research Paper Topic Proposal and Outline Instructions.docx
CSCI 561Research Paper Topic Proposal and Outline Instructions.docxCSCI 561Research Paper Topic Proposal and Outline Instructions.docx
CSCI 561Research Paper Topic Proposal and Outline Instructions.docx
 
CSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docx
CSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docxCSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docx
CSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docx
 
CryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docx
CryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docxCryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docx
CryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docx
 
CSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docx
CSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docxCSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docx
CSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docx
 
CSCE 1040 Homework 2 For this assignment we are going to .docx
CSCE 1040 Homework 2  For this assignment we are going to .docxCSCE 1040 Homework 2  For this assignment we are going to .docx
CSCE 1040 Homework 2 For this assignment we are going to .docx
 
CSCE509–Spring2019Assignment3updated01May19DU.docx
CSCE509–Spring2019Assignment3updated01May19DU.docxCSCE509–Spring2019Assignment3updated01May19DU.docx
CSCE509–Spring2019Assignment3updated01May19DU.docx
 
CSCI 2033 Elementary Computational Linear Algebra(Spring 20.docx
CSCI 2033 Elementary Computational Linear Algebra(Spring 20.docxCSCI 2033 Elementary Computational Linear Algebra(Spring 20.docx
CSCI 2033 Elementary Computational Linear Algebra(Spring 20.docx
 
CSCE 3110 Data Structures & Algorithms Summer 2019 1 of .docx
CSCE 3110 Data Structures & Algorithms Summer 2019   1 of .docxCSCE 3110 Data Structures & Algorithms Summer 2019   1 of .docx
CSCE 3110 Data Structures & Algorithms Summer 2019 1 of .docx
 
CSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docx
CSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docxCSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docx
CSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docx
 
CSC-321 Final Writing Assignment In this assignment, you .docx
CSC-321 Final Writing Assignment  In this assignment, you .docxCSC-321 Final Writing Assignment  In this assignment, you .docx
CSC-321 Final Writing Assignment In this assignment, you .docx
 
Cryptography is the application of algorithms to ensure the confiden.docx
Cryptography is the application of algorithms to ensure the confiden.docxCryptography is the application of algorithms to ensure the confiden.docx
Cryptography is the application of algorithms to ensure the confiden.docx
 
CSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docx
CSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docxCSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docx
CSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docx
 

Recently uploaded

Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 

Recently uploaded (20)

Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 

cs320_final_project_codemedicalApplication.classpathcs320_.docx