This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.File; | |
| import java.text.DateFormat; | |
| import java.text.NumberFormat; | |
| import java.util.Comparator; | |
| import java.util.Date; | |
| import javafx.application.Application; | |
| import javafx.beans.property.ReadOnlyObjectWrapper; | |
| import javafx.beans.value.ObservableValue; | |
| import javafx.collections.FXCollections; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import javafx.application.Application; | |
| import javafx.beans.property.IntegerProperty; | |
| import javafx.beans.property.SimpleIntegerProperty; | |
| import javafx.beans.property.SimpleStringProperty; | |
| import javafx.beans.property.StringProperty; | |
| import javafx.collections.FXCollections; | |
| import javafx.collections.ObservableList; | |
| import javafx.geometry.Insets; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.Label; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import javafx.application.*; | |
| import javafx.geometry.Pos; | |
| import javafx.scene.*; | |
| import javafx.scene.control.Label; | |
| import javafx.scene.layout.*; | |
| import javafx.scene.paint.Color; | |
| import javafx.stage.*; | |
| import javax.imageio.ImageIO; | |
| import java.io.IOException; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.ArrayList; | |
| import java.util.List; | |
| import javafx.application.Application; | |
| import javafx.application.Platform; | |
| import javafx.beans.property.SimpleStringProperty; | |
| import javafx.beans.value.ChangeListener; | |
| import javafx.beans.value.ObservableValue; | |
| import javafx.collections.FXCollections; | |
| import javafx.collections.ObservableList; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.function.Function; | |
| import java.util.stream.Collectors; | |
| import javafx.application.Application; | |
| import javafx.beans.Observable; | |
| import javafx.beans.binding.Bindings; | |
| import javafx.beans.property.ObjectProperty; | |
| import javafx.beans.property.ReadOnlyIntegerProperty; | |
| import javafx.beans.property.ReadOnlyObjectProperty; | |
| import javafx.beans.property.ReadOnlyObjectWrapper; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import javafx.event.Event; | |
| import javafx.scene.control.ContentDisplay; | |
| import javafx.scene.control.TableCell; | |
| import javafx.scene.control.TableColumn; | |
| import javafx.scene.control.TableColumn.CellEditEvent; | |
| import javafx.scene.control.TablePosition; | |
| import javafx.scene.control.TableView; | |
| import javafx.scene.control.TextField; | |
| import javafx.scene.input.KeyCode; | |
| import javafx.scene.input.KeyEvent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.ArrayList; | |
| import java.util.List; | |
| import javafx.application.Application; | |
| import javafx.beans.property.SimpleStringProperty; | |
| import javafx.collections.FXCollections; | |
| import javafx.collections.ObservableList; | |
| import javafx.geometry.Insets; | |
| import javafx.scene.Group; | |
| import javafx.scene.Node; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public enum Role { FATHER, SON, MOTHER, DAUGHTER, BROTHER, SISTER } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class VirtualKeyboard { | |
| private final VBox root ; | |
| /** | |
| * Creates a Virtual Keyboard. | |
| * @param target The node that will receive KeyEvents from this keyboard. | |
| * If target is null, KeyEvents will be dynamically forwarded to the focus owner | |
| * in the Scene containing this keyboard. | |
| */ | |
| public VirtualKeyboard(ReadOnlyObjectProperty<Node> target) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package login; | |
| import javafx.event.*; | |
| import javafx.fxml.FXML; | |
| import javafx.scene.control.*; | |
| /** Controls the login screen */ | |
| public class LoginController { | |
| @FXML private TextField user; | |
| @FXML private TextField password; |