Refactor + Delete

This commit is contained in:
2024-04-16 11:00:22 +02:00
parent 5acaf6df16
commit 2e5fedaa3a
6 changed files with 10 additions and 25 deletions

View File

@ -11,7 +11,7 @@ import java.io.File;
import java.io.IOException;
import java.util.Arrays;
public class FileSelect {
public class Controller_FileSelect {
@FXML
protected void selectFileLST(ActionEvent event) throws IOException {
FileChooser fileChooser = new FileChooser();

View File

@ -1,4 +1,4 @@
package fabrik.simulator.pic16f84;
public class MainBody {
public class Controller_MainBody {
}

View File

@ -1,14 +0,0 @@
package fabrik.simulator.pic16f84;
import javafx.fxml.FXML;
import javafx.scene.control.Label;
public class HelloController {
@FXML
private Label welcomeText;
@FXML
protected void onHelloButtonClick() {
welcomeText.setText("Welcome to JavaFX Application!");
}
}