-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from KrishPatel13/revert-21-revert-20-develop
Revert "Revert "Chronos v1.0 complete!!!""
- Loading branch information
Showing
33 changed files
with
2,333 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import javafx.application.Application; | ||
import javafx.stage.Stage; | ||
import model.CalendarModel; | ||
import views.CalendarView; | ||
|
||
|
||
/** | ||
* Main Class for the Application. | ||
*/ | ||
public class Main extends Application | ||
{ | ||
CalendarView view; // the calendar view to render for the application. | ||
|
||
/** | ||
* The Main function of the class. | ||
* | ||
* The launcher for JavaFx application. | ||
* @param args arguments | ||
*/ | ||
public static void main(String[] args) | ||
{ | ||
launch(args); | ||
} | ||
|
||
|
||
/** | ||
* To Start the application. | ||
* | ||
* @param primaryStage the stage for the JavaFx application. | ||
* @throws Exception any exception that is to be thrown | ||
*/ | ||
@Override | ||
public void start(Stage primaryStage) throws Exception | ||
{ | ||
this.view = CalendarView.getView(new CalendarModel(),primaryStage); | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module type="JAVA_MODULE" version="4"> | ||
<component name="NewModuleRootManager" inherit-compiler-output="true"> | ||
<exclude-output /> | ||
<content url="file://$MODULE_DIR$"> | ||
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" /> | ||
</content> | ||
<orderEntry type="inheritedJdk" /> | ||
<orderEntry type="sourceFolder" forTests="false" /> | ||
<orderEntry type="library" name="javafx" level="application" /> | ||
<orderEntry type="module-library" scope="TEST"> | ||
<library name="JUnit5.8.1"> | ||
<CLASSES> | ||
<root url="jar://$MODULE_DIR$/lib/junit-jupiter-5.8.1.jar!/" /> | ||
<root url="jar://$MODULE_DIR$/lib/junit-jupiter-api-5.8.1.jar!/" /> | ||
<root url="jar://$MODULE_DIR$/lib/opentest4j-1.2.0.jar!/" /> | ||
<root url="jar://$MODULE_DIR$/lib/junit-platform-commons-1.8.1.jar!/" /> | ||
<root url="jar://$MODULE_DIR$/lib/apiguardian-api-1.1.2.jar!/" /> | ||
<root url="jar://$MODULE_DIR$/lib/junit-jupiter-params-5.8.1.jar!/" /> | ||
<root url="jar://$MODULE_DIR$/lib/junit-jupiter-engine-5.8.1.jar!/" /> | ||
<root url="jar://$MODULE_DIR$/lib/junit-platform-engine-1.8.1.jar!/" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES /> | ||
</library> | ||
</orderEntry> | ||
<orderEntry type="module-library"> | ||
<library> | ||
<CLASSES> | ||
<root url="jar://$MODULE_DIR$/lib/junit-jupiter-5.8.1.jar!/" /> | ||
<root url="jar://$MODULE_DIR$/lib/junit-jupiter-api-5.8.1.jar!/" /> | ||
<root url="jar://$MODULE_DIR$/lib/opentest4j-1.2.0.jar!/" /> | ||
<root url="jar://$MODULE_DIR$/lib/junit-platform-commons-1.8.1.jar!/" /> | ||
<root url="jar://$MODULE_DIR$/lib/apiguardian-api-1.1.2.jar!/" /> | ||
<root url="jar://$MODULE_DIR$/lib/junit-jupiter-params-5.8.1.jar!/" /> | ||
<root url="jar://$MODULE_DIR$/lib/junit-jupiter-engine-5.8.1.jar!/" /> | ||
<root url="jar://$MODULE_DIR$/lib/junit-platform-engine-1.8.1.jar!/" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES /> | ||
</library> | ||
</orderEntry> | ||
<orderEntry type="module-library"> | ||
<library name="JUnit5.8.1"> | ||
<CLASSES> | ||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter/5.8.1/junit-jupiter-5.8.1.jar!/" /> | ||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-api/5.8.1/junit-jupiter-api-5.8.1.jar!/" /> | ||
<root url="jar://$MAVEN_REPOSITORY$/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar!/" /> | ||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-commons/1.8.1/junit-platform-commons-1.8.1.jar!/" /> | ||
<root url="jar://$MAVEN_REPOSITORY$/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar!/" /> | ||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-params/5.8.1/junit-jupiter-params-5.8.1.jar!/" /> | ||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-engine/5.8.1/junit-jupiter-engine-5.8.1.jar!/" /> | ||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-engine/1.8.1/junit-platform-engine-1.8.1.jar!/" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES /> | ||
</library> | ||
</orderEntry> | ||
</component> | ||
</module> |
Oops, something went wrong.