javadoc edited

This commit is contained in:
Joshua Perry 2023-02-05 20:58:52 +00:00
parent 11b61afade
commit 1f47821aea
3 changed files with 2 additions and 1 deletions

View File

@ -117,7 +117,6 @@ public class Name {
/** /**
* Get the initials of the stored name * Get the initials of the stored name
* @return a string containing the initials * @return a string containing the initials
* @author r0r5chach
*/ */
public String getInitials() { public String getInitials() {
String result = firstName.substring(0,1); String result = firstName.substring(0,1);

View File

@ -19,6 +19,7 @@ import javafx.scene.control.TabPane;
/** /**
* Class that defines a generic controller for the GUI * Class that defines a generic controller for the GUI
* Inherits from javafx.fxml.Initializable * Inherits from javafx.fxml.Initializable
* @author r0r5chach
*/ */
public class Controller implements Initializable { public class Controller implements Initializable {
/** /**

View File

@ -24,6 +24,7 @@ import javafx.scene.text.Text;
/** /**
* Class that defines the controller for the edit View (edit.fxml) of the GUI * Class that defines the controller for the edit View (edit.fxml) of the GUI
* Inherits from com.r0r5chach.controllers.Controller * Inherits from com.r0r5chach.controllers.Controller
* @author r0r5chach
*/ */
public class EditController extends Controller { public class EditController extends Controller {
/** /**