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
|
||||
* @return a string containing the initials
|
||||
* @author r0r5chach
|
||||
*/
|
||||
public String getInitials() {
|
||||
String result = firstName.substring(0,1);
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ import javafx.scene.control.TabPane;
|
|||
/**
|
||||
* Class that defines a generic controller for the GUI
|
||||
* Inherits from javafx.fxml.Initializable
|
||||
* @author r0r5chach
|
||||
*/
|
||||
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
|
||||
* Inherits from com.r0r5chach.controllers.Controller
|
||||
* @author r0r5chach
|
||||
*/
|
||||
public class EditController extends Controller {
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue