Package | Description |
---|---|
ch.gbssg.app.bla.patient | |
ch.gbssg.app.ila.database | |
ch.gbssg.app.ila.database.dao | |
ch.gbssg.app.ila.database.mapper | |
ch.gbssg.app.ila.doctor | |
ch.gbssg.app.util.command |
Modifier and Type | Method and Description |
---|---|
Patient |
PatientModel.getModel()
Returns the Data model
|
Modifier and Type | Method and Description |
---|---|
void |
PatientController.refreshPatientData(Patient model)
Write all changes into the Model
|
void |
PatientView.setData(Patient patient)
Fills the Data from the model into the form
|
void |
PatientModel.setModel(Patient model)
Saves the received data model
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Patient> |
DatabaseModel.getFilteredPatient(Patient patient)
returns a list of matching Patient. don't found any matches, return null.
|
Modifier and Type | Method and Description |
---|---|
int |
DatabaseModel.addPatient(Patient patient)
Adds a new Patient element to the database
|
java.util.List<Patient> |
DatabaseModel.getFilteredPatient(Patient patient)
returns a list of matching Patient. don't found any matches, return null.
|
int |
DatabaseModel.removePatient(Patient patient)
Remove the given Patient from the database
|
int |
DatabaseModel.updatePatient(Patient patient)
Updates the given model into the Database
|
Modifier and Type | Method and Description |
---|---|
Patient |
PatientJDBCTemplate.getById(int id) |
Modifier and Type | Method and Description |
---|---|
java.util.List<Patient> |
PatientJDBCTemplate.filterByEntity(Patient entity) |
java.util.List<Patient> |
PatientJDBCTemplate.get() |
Modifier and Type | Method and Description |
---|---|
int |
PatientJDBCTemplate.create(Patient entity) |
java.util.List<Patient> |
PatientJDBCTemplate.filterByEntity(Patient entity) |
int |
PatientJDBCTemplate.update(int id,
Patient newEntity) |
Modifier and Type | Method and Description |
---|---|
Patient |
PatientMapper.mapRow(java.sql.ResultSet rs,
int rowNum) |
Modifier and Type | Method and Description |
---|---|
javafx.collections.ObservableList<Patient> |
DoctorModel.getPatientsData() |
javafx.collections.ObservableList<Patient> |
DoctorModel.getPatientsFilteredData() |
Modifier and Type | Method and Description |
---|---|
void |
DoctorController.deletePatient(Patient model)
prompt the user and inactivate the Patient
|
void |
DoctorController.showPatientChildWindow(Patient model)
Opens the Patient Dialog and sends the given model
for later processing
|
Modifier and Type | Method and Description |
---|---|
Patient |
CmdShowPatientDialog.getPatient() |
Modifier and Type | Method and Description |
---|---|
void |
CmdShowPatientDialog.setPatient(Patient patient) |
Constructor and Description |
---|
CmdShowPatientDialog(javafx.stage.Stage owner,
Patient model)
Constructor
|