Initial commit
This commit is contained in:
commit
ee4bdefc9d
17
SmartNotes/.project
Normal file
17
SmartNotes/.project
Normal 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>
|
30
SmartNotes/src/com/madeorsk/smartnotes/SmartNotes.java
Normal file
30
SmartNotes/src/com/madeorsk/smartnotes/SmartNotes.java
Normal 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();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user