#10 story/pfleger-modul-sperren-und-loschen-von-pflegern #37

Merged
SZUT-Dorian merged 11 commits from story/pfleger-modul-sperren-und-loschen-von-pflegern into main 2024-05-16 11:57:12 +00:00
3 changed files with 6 additions and 5 deletions
Showing only changes of commit e583d825ec - Show all commits

View file

@ -88,7 +88,7 @@ public class MainWindowController {
}
/**
* Loads the treatment page into its tab.
* Loads the {@link } page into its tab.
*/
private void loadTreatmentsPage() {
try {
@ -120,7 +120,7 @@ public class MainWindowController {
}
SZUT-Dominik marked this conversation as resolved Outdated
  • Typo: active wird kleingeschrieben.
- [x] Typo: **active** wird kleingeschrieben.
/**
* Loads the active Nurse page into its tab.
* Loads the active {@link Nurse} page into its tab.
SZUT-Dominik marked this conversation as resolved Outdated
  • Nurse wird klein geschrieben, oder eine Refernz
- [x] Nurse wird klein geschrieben, oder eine Refernz
*/
private void loadActiveNursePage() {
try {
@ -138,7 +138,7 @@ public class MainWindowController {
}
/**
* Loads the locked nurse page into its tab.
* Loads the locked {@link Nurse} page into its tab.
*/
private void loadLockedNursePage() {
try {

View file

@ -21,6 +21,7 @@ import java.util.List;
import java.util.Map;
/**
SZUT-Dominik marked this conversation as resolved Outdated
  • Missing Javadoc
    Hier würded ihr euch auch mit Author Tags hinzufügen:
    @author Armin Ribic
    wir haben überall die klar Namen geschrieben
- [ ] Missing Javadoc Hier würded ihr euch auch mit Author Tags hinzufügen: `@author Armin Ribic` wir haben überall die klar Namen geschrieben
* Controller for all locked nurses.
* @author Armin Ribic
* @author Dorian Nemec
SZUT-Dominik marked this conversation as resolved
Review
  • Author alleine reicht Heidemann hier nicht, kurze Beschreibung wie bei den anderen Controllern hier hin, muss nix Langes sein.
- [x] Author alleine reicht Heidemann hier nicht, kurze Beschreibung wie bei den anderen Controllern hier hin, muss nix Langes sein.
*/
@ -69,7 +70,7 @@ public class LockedNurseController {
}
/**
SZUT-Dominik marked this conversation as resolved
Review
  • Refernz für Nurse hier bitte rein {@link Nurse}
- [x] Refernz für Nurse hier bitte rein {@link Nurse}
* Reads all locked nurse data and shows it in the table.
* Reads all locked {@link Nurse} data and shows it in the table.
*/
private void readAllAndShowInTableView() {
this.nurses.clear();

View file

@ -71,7 +71,7 @@ public class NurseDao extends DaoImp<Nurse> {
}
SZUT-Dominik marked this conversation as resolved Outdated
  • Javadoc ist bereits im DaoImp<T> und wird vererbt, bitte hier weglassen
- [x] Javadoc ist bereits im `DaoImp<T>` und wird vererbt, bitte hier weglassen
/**
* Reads all active nurses.
* Read all database entries of active {@link Nurse}s into a {@link List} of model instances.
SZUT-Dominik marked this conversation as resolved Outdated
  • Read all database entries of active {@link Nurse}s into a {@link List} of model instances.
- [x] `Read all database entries of active {@link Nurse}s into a {@link List} of model instances.`
*/
public List<Nurse> readAllActive() throws SQLException {
final String SQL = "SELECT * FROM nurse WHERE isLocked=false";