Skip to content
Snippets Groups Projects
Commit 9352d883 authored by ArktikHunter's avatar ArktikHunter
Browse files

Created empty classes according to class diagram

parent 4295265b
No related branches found
No related tags found
No related merge requests found
Showing
with 68 additions and 0 deletions
package com.example.scheduler;
public class AvailabilityView {
}
package com.example.scheduler;
public class Controller {
}
package com.example.scheduler;
public class Employee {
}
package com.example.scheduler;
public class Model {
}
package com.example.scheduler;
public interface ModelSubscriber {
}
package com.example.scheduler;
public class PayrollView {
}
package com.example.scheduler;
public class Schedule {
}
package com.example.scheduler;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
public class ScheduleApp extends Application {
@Override
public void start(Stage stage) throws Exception {
// just for now, not sure if using fxml or not?
BorderPane root = new BorderPane();
Label hello = new Label("Welcome :)");
root.setCenter(hello);
Scene scene = new Scene(root);
stage.setTitle("Schedule App");
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch();
}
}
package com.example.scheduler;
public class ScheduleView {
}
package com.example.scheduler;
public class Shift {
}
package com.example.scheduler;
public class Staff {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment