Skip to content
Snippets Groups Projects
Commit a6c4fd04 authored by Administrator's avatar Administrator
Browse files

initial commit

parent 06a2b6df
Branches
Tags
No related merge requests found
Showing
with 101 additions and 0 deletions
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.fx.ide.jdt.core.JAVAFX_CONTAINER"/>
<classpathentry kind="output" path="class"/>
</classpath>
.project 0 → 100644
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>UNO</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.xtext.ui.shared.xtextBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.xtext.ui.shared.xtextNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
[CHANGELOG]
===========
UNO
======
>>> start-date: 09.04.16
>>> status-date: 10.04.16
____________________________________________________
____________________________________________________
[/CHANGELOG]
\ No newline at end of file
# UNO # UNO
- startdate: 09.04.16
- current version: 0.0.0 (0) - 10.04.16
### Description
The card game UNO
\ No newline at end of file
<?xml version="1.0" encoding="ASCII"?>
<anttasks:AntTask xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:anttasks="http://org.eclipse.fx.ide.jdt/1.0" buildDirectory="${project}/build">
<deploy>
<application name="UNO"/>
<info/>
</deploy>
<signjar/>
</anttasks:AntTask>
build/icon.png

43.1 KiB

File added
File added
app.name=PlayCount
version.code=2
version.name=1.1.0
version.date=23.03.16
\ No newline at end of file
/* JavaFX CSS - Leave this comment until you have at least create one rule which uses -fx-Property */
\ No newline at end of file
File added
File added
File added
File added
File added
File added
File added
File added
File added
package application;
import java.util.Locale;
import java.util.ResourceBundle;
import javafx.scene.control.Alert;
import javafx.scene.control.Alert.AlertType;
import javafx.scene.image.Image;
import javafx.stage.Stage;
public class Controller
{
public Stage stage;
public Image icon = new Image("application/icon.png");
private final ResourceBundle bundle = ResourceBundle.getBundle("application/", Locale.GERMANY);
public void init()
{
}
public void setStage(Stage stage)
{
this.stage = stage;
}
public void about()
{
Alert alert = new Alert(AlertType.INFORMATION);
alert.setTitle("ber " + bundle.getString("app.name"));
alert.setHeaderText(bundle.getString("app.name"));
alert.setContentText("Version: " + bundle.getString("version.name") + "\r\nDatum: " + bundle.getString("version.date") + "\r\nAutor: Robert Goldmann\r\n");
Stage dialogStage = (Stage)alert.getDialogPane().getScene().getWindow();
dialogStage.getIcons().add(icon);
alert.showAndWait();
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment