NOTICKET: Javadoc Cleanup

This commit is contained in:
Dominik Säume 2024-05-14 23:26:13 +02:00
parent 817447239f
commit af6ad9de15
Signed by: SZUT-Dominik
GPG key ID: DACB4B96EB59ABA8
9 changed files with 9 additions and 2 deletions

View file

@ -15,6 +15,7 @@ import java.util.*;
/** /**
* {@link Fixture} for {@link Medication}. * {@link Fixture} for {@link Medication}.
*
* @author Dominik Säume * @author Dominik Säume
*/ */
public class MedicationFixture implements Fixture<Medication> { public class MedicationFixture implements Fixture<Medication> {

View file

@ -14,6 +14,7 @@ import java.util.*;
/** /**
* {@link Fixture} for {@link Nurse}. * {@link Fixture} for {@link Nurse}.
*
* @author Dominik Säume * @author Dominik Säume
*/ */
public class NurseFixture implements Fixture<Nurse> { public class NurseFixture implements Fixture<Nurse> {

View file

@ -16,6 +16,7 @@ import static de.hitec.nhplus.utils.DateConverter.convertStringToLocalDate;
/** /**
* {@link Fixture} for {@link Patient}. * {@link Fixture} for {@link Patient}.
*
* @author Dominik Säume * @author Dominik Säume
*/ */
public class PatientFixture implements Fixture<Patient> { public class PatientFixture implements Fixture<Patient> {

View file

@ -18,6 +18,7 @@ import static de.hitec.nhplus.utils.DateConverter.convertStringToLocalTime;
/** /**
* {@link Fixture} for {@link Treatment}. * {@link Fixture} for {@link Treatment}.
*
* @author Dominik Säume * @author Dominik Säume
*/ */
public class TreatmentFixture implements Fixture<Treatment> { public class TreatmentFixture implements Fixture<Treatment> {

View file

@ -13,6 +13,7 @@ import java.util.Objects;
/** /**
* Controller for the main window of the application, which holds all tabs. * Controller for the main window of the application, which holds all tabs.
*
* @author Bernd Heideman * @author Bernd Heideman
* @author Dominik Säume * @author Dominik Säume
*/ */

View file

@ -4,7 +4,7 @@ import javafx.beans.property.SimpleStringProperty;
/** /**
* A simple base model for a {@link Person} that can be extended. * A simple base model for a {@link Person} that can be extended.
* *
* @author Bernd Heideman * @author Bernd Heideman
* @author Dominik Säume * @author Dominik Säume
*/ */

View file

@ -18,7 +18,7 @@ public class Nurse extends Person {
/** /**
* This constructor allows instantiating a {@link Nurse} object, * This constructor allows instantiating a {@link Nurse} object,
* before it is stored in the database, by omitting the {@link Nurse#id ID} value. * 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 * @implSpec Instances created with this constructor can be directly passed to
* {@link de.hitec.nhplus.nurse.database.NurseDao#create NurseDao.create}. * {@link de.hitec.nhplus.nurse.database.NurseDao#create NurseDao.create}.
*/ */

View file

@ -28,6 +28,7 @@ public class Patient extends Person {
/** /**
* This constructor allows instantiating a {@link Patient} object, * This constructor allows instantiating a {@link Patient} object,
* before it is stored in the database, by omitting the {@link Patient#id ID} value. * 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 * @implSpec Instances created with this constructor can be directly passed to
* {@link de.hitec.nhplus.patient.database.PatientDao#create PatientDao.create}. * {@link de.hitec.nhplus.patient.database.PatientDao#create PatientDao.create}.
*/ */

View file

@ -6,6 +6,7 @@ import java.time.format.DateTimeFormatter;
/** /**
* A utility class that holds utility methods for date conversion. * A utility class that holds utility methods for date conversion.
*
* @author Bernd Heideman * @author Bernd Heideman
*/ */
public class DateConverter { public class DateConverter {