diff --git a/.idea/encodings.xml b/.idea/encodings.xml
new file mode 100644
index 0000000..aa00ffa
--- /dev/null
+++ b/.idea/encodings.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 6037371..6cf8969 100644
--- a/pom.xml
+++ b/pom.xml
@@ -60,7 +60,7 @@
default-cli
- id.co.gtc.cctvwithcuda/id.co.gtc.cctvwithcuda.HelloApplication
+ id.co.gtc.cctvwithcuda/id.co.gtc.cctvwithcuda.MainApplication
app
app
app
diff --git a/src/main/java/id/co/gtc/cctvwithcuda/HelloApplication.java b/src/main/java/id/co/gtc/cctvwithcuda/MainApplication.java
similarity index 69%
rename from src/main/java/id/co/gtc/cctvwithcuda/HelloApplication.java
rename to src/main/java/id/co/gtc/cctvwithcuda/MainApplication.java
index 1910cfa..09318fd 100644
--- a/src/main/java/id/co/gtc/cctvwithcuda/HelloApplication.java
+++ b/src/main/java/id/co/gtc/cctvwithcuda/MainApplication.java
@@ -7,12 +7,12 @@ import javafx.stage.Stage;
import java.io.IOException;
-public class HelloApplication extends Application {
+public class MainApplication extends Application {
@Override
public void start(Stage stage) throws IOException {
- FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("hello-view.fxml"));
+ FXMLLoader fxmlLoader = new FXMLLoader(MainApplication.class.getResource("MainView.fxml"));
Scene scene = new Scene(fxmlLoader.load(), 320, 240);
- stage.setTitle("Hello!");
+ stage.setTitle("CCTV with CUDA");
stage.setScene(scene);
stage.show();
}
diff --git a/src/main/java/id/co/gtc/cctvwithcuda/HelloController.java b/src/main/java/id/co/gtc/cctvwithcuda/MainController.java
similarity index 89%
rename from src/main/java/id/co/gtc/cctvwithcuda/HelloController.java
rename to src/main/java/id/co/gtc/cctvwithcuda/MainController.java
index db8e498..1c181cc 100644
--- a/src/main/java/id/co/gtc/cctvwithcuda/HelloController.java
+++ b/src/main/java/id/co/gtc/cctvwithcuda/MainController.java
@@ -3,7 +3,7 @@ package id.co.gtc.cctvwithcuda;
import javafx.fxml.FXML;
import javafx.scene.control.Label;
-public class HelloController {
+public class MainController {
@FXML
private Label welcomeText;
diff --git a/src/main/resources/id/co/gtc/cctvwithcuda/hello-view.fxml b/src/main/resources/id/co/gtc/cctvwithcuda/MainView.fxml
similarity index 88%
rename from src/main/resources/id/co/gtc/cctvwithcuda/hello-view.fxml
rename to src/main/resources/id/co/gtc/cctvwithcuda/MainView.fxml
index 7b2c72c..05f44d0 100644
--- a/src/main/resources/id/co/gtc/cctvwithcuda/hello-view.fxml
+++ b/src/main/resources/id/co/gtc/cctvwithcuda/MainView.fxml
@@ -6,7 +6,7 @@
+ fx:controller="id.co.gtc.cctvwithcuda.MainController">