parent
d9e0aa2049
commit
e583d825ec
3 changed files with 6 additions and 5 deletions
|
@ -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 {
|
|||
}
|
||||
|
||||
/**
|
||||
* Loads the active Nurse page into its tab.
|
||||
* Loads the active {@link Nurse} page into its tab.
|
||||
*/
|
||||
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 {
|
||||
|
|
|
@ -21,6 +21,7 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Controller for all locked nurses.
|
||||
* @author Armin Ribic
|
||||
* @author Dorian Nemec
|
||||
*/
|
||||
|
@ -69,7 +70,7 @@ public class LockedNurseController {
|
|||
}
|
||||
|
||||
/**
|
||||
* 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();
|
||||
|
|
|
@ -71,7 +71,7 @@ public class NurseDao extends DaoImp<Nurse> {
|
|||
}
|
||||
|
||||
/**
|
||||
* Reads all active nurses.
|
||||
* 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";
|
||||
|
|
Loading…
Reference in a new issue