javadoc edited
This commit is contained in:
parent
11b61afade
commit
1f47821aea
|
|
@ -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);
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue