This commit is contained in:
Mark Zaharchenko 2022-10-10 01:31:43 +04:00
parent ebf0a49b8f
commit 088578d34c
2 changed files with 3 additions and 3 deletions

View File

@ -69,7 +69,7 @@
<!-- Default configuration for running with: mvn clean javafx:run --> <!-- Default configuration for running with: mvn clean javafx:run -->
<id>default-cli</id> <id>default-cli</id>
<configuration> <configuration>
<mainClass>com.example.doubledeckerbus/com.example.doubledeckerbus.FormBus <mainClass>com.example.doubledeckerbus/com.example.doubledeckerbus.Form
</mainClass> </mainClass>
<launcher>app</launcher> <launcher>app</launcher>
<jlinkZipName>app</jlinkZipName> <jlinkZipName>app</jlinkZipName>

View File

@ -7,10 +7,10 @@ import javafx.stage.Stage;
import java.io.IOException; import java.io.IOException;
public class FormBus extends Application { public class Form extends Application {
@Override @Override
public void start(Stage stage) throws IOException { public void start(Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(FormBus.class.getResource("hello-view.fxml")); FXMLLoader fxmlLoader = new FXMLLoader(Form.class.getResource("hello-view.fxml"));
Scene scene = new Scene(fxmlLoader.load()); Scene scene = new Scene(fxmlLoader.load());
stage.setTitle("DoubleDeckerBus"); stage.setTitle("DoubleDeckerBus");
stage.setScene(scene); stage.setScene(scene);