Initial commit

This commit is contained in:
Madeorsk 2016-10-30 02:33:54 +02:00
commit ee4bdefc9d
2 changed files with 47 additions and 0 deletions

17
SmartNotes/.project Normal file
View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>SmartNotes</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,30 @@
package com.madeorsk.smartnotes;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class SmartNotes extends Application
{
public static final String version = "alpha0.1";
public static void main(String[] args)
{
System.out.println("Starting SmartNotes...");
launch();
System.out.println("SmartNotes closed.");
}
private VBox root;
@Override
public void start(Stage stage) throws Exception
{
this.root = new VBox();
stage.setScene(new Scene(this.root, 800, 600));
stage.setTitle("SmartNotes " + version);
stage.show();
}
}