NOTICKET: Javadoc Cleanup
This commit is contained in:
parent
817447239f
commit
af6ad9de15
9 changed files with 9 additions and 2 deletions
|
@ -15,6 +15,7 @@ import java.util.*;
|
|||
|
||||
/**
|
||||
* {@link Fixture} for {@link Medication}.
|
||||
*
|
||||
* @author Dominik Säume
|
||||
*/
|
||||
public class MedicationFixture implements Fixture<Medication> {
|
||||
|
|
|
@ -14,6 +14,7 @@ import java.util.*;
|
|||
|
||||
/**
|
||||
* {@link Fixture} for {@link Nurse}.
|
||||
*
|
||||
* @author Dominik Säume
|
||||
*/
|
||||
public class NurseFixture implements Fixture<Nurse> {
|
||||
|
|
|
@ -16,6 +16,7 @@ import static de.hitec.nhplus.utils.DateConverter.convertStringToLocalDate;
|
|||
|
||||
/**
|
||||
* {@link Fixture} for {@link Patient}.
|
||||
*
|
||||
* @author Dominik Säume
|
||||
*/
|
||||
public class PatientFixture implements Fixture<Patient> {
|
||||
|
|
|
@ -18,6 +18,7 @@ import static de.hitec.nhplus.utils.DateConverter.convertStringToLocalTime;
|
|||
|
||||
/**
|
||||
* {@link Fixture} for {@link Treatment}.
|
||||
*
|
||||
* @author Dominik Säume
|
||||
*/
|
||||
public class TreatmentFixture implements Fixture<Treatment> {
|
||||
|
|
|
@ -13,6 +13,7 @@ import java.util.Objects;
|
|||
|
||||
/**
|
||||
* Controller for the main window of the application, which holds all tabs.
|
||||
*
|
||||
* @author Bernd Heideman
|
||||
* @author Dominik Säume
|
||||
*/
|
||||
|
|
|
@ -4,7 +4,7 @@ import javafx.beans.property.SimpleStringProperty;
|
|||
|
||||
/**
|
||||
* A simple base model for a {@link Person} that can be extended.
|
||||
*
|
||||
*
|
||||
* @author Bernd Heideman
|
||||
* @author Dominik Säume
|
||||
*/
|
||||
|
|
|
@ -18,7 +18,7 @@ public class Nurse extends Person {
|
|||
/**
|
||||
* This constructor allows instantiating a {@link Nurse} object,
|
||||
* before it is stored in the database, by omitting the {@link Nurse#id ID} value.
|
||||
*
|
||||
*
|
||||
* @implSpec Instances created with this constructor can be directly passed to
|
||||
* {@link de.hitec.nhplus.nurse.database.NurseDao#create NurseDao.create}.
|
||||
*/
|
||||
|
|
|
@ -28,6 +28,7 @@ public class Patient extends Person {
|
|||
/**
|
||||
* This constructor allows instantiating a {@link Patient} object,
|
||||
* before it is stored in the database, by omitting the {@link Patient#id ID} value.
|
||||
*
|
||||
* @implSpec Instances created with this constructor can be directly passed to
|
||||
* {@link de.hitec.nhplus.patient.database.PatientDao#create PatientDao.create}.
|
||||
*/
|
||||
|
|
|
@ -6,6 +6,7 @@ import java.time.format.DateTimeFormatter;
|
|||
|
||||
/**
|
||||
* A utility class that holds utility methods for date conversion.
|
||||
*
|
||||
* @author Bernd Heideman
|
||||
*/
|
||||
public class DateConverter {
|
||||
|
|
Loading…
Reference in a new issue