Skip to content

Commit c74f51b

Browse files
committed
Initial commit
0 parents  commit c74f51b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+10412
-0
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# FXSimulator_1.0

build.xml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<?xml version="1.0" encoding="UTF-8"?><!-- You may freely edit this file. See commented blocks below for --><!-- some examples of how to customize the build. --><!-- (If you delete it and reopen the project it will be recreated.) --><!-- By default, only the Clean and Build commands use this build script. --><project name="FXSimulator_1.0" default="default" basedir="." xmlns:fx="javafx:com.sun.javafx.tools.ant">
2+
<description>Builds, tests, and runs the project FXSimulator_1.0.</description>
3+
<import file="nbproject/build-impl.xml"/>
4+
<!--
5+
6+
There exist several targets which are by default empty and which can be
7+
used for execution of your tasks. These targets are usually executed
8+
before and after some main targets. Those of them relevant for JavaFX project are:
9+
10+
-pre-init: called before initialization of project properties
11+
-post-init: called after initialization of project properties
12+
-pre-compile: called before javac compilation
13+
-post-compile: called after javac compilation
14+
-pre-compile-test: called before javac compilation of JUnit tests
15+
-post-compile-test: called after javac compilation of JUnit tests
16+
-pre-jfx-jar: called before FX SDK specific <fx:jar> task
17+
-post-jfx-jar: called after FX SDK specific <fx:jar> task
18+
-pre-jfx-deploy: called before FX SDK specific <fx:deploy> task
19+
-post-jfx-deploy: called after FX SDK specific <fx:deploy> task
20+
-pre-jfx-native: called just after -pre-jfx-deploy if <fx:deploy> runs in native packaging mode
21+
-post-jfx-native: called just after -post-jfx-deploy if <fx:deploy> runs in native packaging mode
22+
-post-clean: called after cleaning build products
23+
24+
(Targets beginning with '-' are not intended to be called on their own.)
25+
26+
Example of inserting a HTML postprocessor after javaFX SDK deployment:
27+
28+
<target name="-post-jfx-deploy">
29+
<basename property="jfx.deployment.base" file="${jfx.deployment.jar}" suffix=".jar"/>
30+
<property name="jfx.deployment.html" location="${jfx.deployment.dir}${file.separator}${jfx.deployment.base}.html"/>
31+
<custompostprocess>
32+
<fileset dir="${jfx.deployment.html}"/>
33+
</custompostprocess>
34+
</target>
35+
36+
Example of calling an Ant task from JavaFX SDK. Note that access to JavaFX SDK Ant tasks must be
37+
initialized; to ensure this is done add the dependence on -check-jfx-sdk-version target:
38+
39+
<target name="-post-jfx-jar" depends="-check-jfx-sdk-version">
40+
<echo message="Calling jar task from JavaFX SDK"/>
41+
<fx:jar ...>
42+
...
43+
</fx:jar>
44+
</target>
45+
46+
For more details about JavaFX SDK Ant tasks go to
47+
http://docs.oracle.com/javafx/2/deployment/jfxpub-deployment.htm
48+
49+
For list of available properties check the files
50+
nbproject/build-impl.xml and nbproject/jfx-impl.xml.
51+
52+
-->
53+
</project>

build/built-jar.properties

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#Tue, 19 Jun 2018 00:50:02 +0600
2+
3+
4+
F\:\\Java\ Workspace\\FXSimulator_1.0=

build/classes/ButtonDot.png

573 Bytes
Loading

build/classes/arrow-left.png

628 Bytes
Loading

build/classes/fxsimulator/Canvas.fxml

+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<?import com.jfoenix.controls.JFXButton?>
4+
<?import javafx.geometry.Insets?>
5+
<?import javafx.scene.control.Label?>
6+
<?import javafx.scene.image.Image?>
7+
<?import javafx.scene.image.ImageView?>
8+
<?import javafx.scene.layout.AnchorPane?>
9+
<?import javafx.scene.layout.ColumnConstraints?>
10+
<?import javafx.scene.layout.GridPane?>
11+
<?import javafx.scene.layout.HBox?>
12+
<?import javafx.scene.layout.RowConstraints?>
13+
<?import javafx.scene.text.Font?>
14+
<?import jfxtras.labs.scene.layout.ScalableContentPane?>
15+
16+
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="580.0" prefWidth="823.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fxsimulator.CanvasController">
17+
<children>
18+
<ScalableContentPane fx:id="canvas" layoutX="200.0" layoutY="-3.0" prefHeight="590.0" prefWidth="623.0" style="-fx-background-color: #535c68;" AnchorPane.bottomAnchor="-7.0" AnchorPane.leftAnchor="200.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="-3.0" />
19+
<AnchorPane prefHeight="580.0" prefWidth="200.0" style="-fx-background-color: #273c75;" AnchorPane.bottomAnchor="0.0" AnchorPane.topAnchor="0.0">
20+
<children>
21+
<JFXButton fx:id="canvasBackButton" contentDisplay="GRAPHIC_ONLY" prefHeight="30.0" prefWidth="34.0">
22+
<graphic>
23+
<ImageView fx:id="canvasBack" fitHeight="29.0" fitWidth="28.0" pickOnBounds="true">
24+
<image>
25+
<Image url="@../res/arrow-left.png" />
26+
</image>
27+
</ImageView>
28+
</graphic>
29+
</JFXButton>
30+
<HBox alignment="CENTER" layoutX="10.0" layoutY="519.0" prefHeight="61.0" prefWidth="181.0" spacing="10.0" AnchorPane.bottomAnchor="0.0">
31+
<children>
32+
<JFXButton fx:id="clearButton" prefHeight="31.0" prefWidth="76.0" style="-fx-background-color: #686de0;" text="CLEAR" textFill="#d3c5c5">
33+
<font>
34+
<Font name="Junction Regular Regular" size="13.0" />
35+
</font>
36+
</JFXButton>
37+
<JFXButton fx:id="resetButton" prefHeight="31.0" prefWidth="76.0" style="-fx-background-color: #686de0;" text="RESET" textFill="#d3c5c5">
38+
<font>
39+
<Font name="Junction Regular Regular" size="13.0" />
40+
</font>
41+
</JFXButton>
42+
</children>
43+
<opaqueInsets>
44+
<Insets />
45+
</opaqueInsets>
46+
<padding>
47+
<Insets bottom="10.0" left="5.0" right="5.0" top="10.0" />
48+
</padding>
49+
</HBox>
50+
<GridPane layoutY="65.0" prefHeight="142.0" prefWidth="200.0">
51+
<columnConstraints>
52+
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
53+
</columnConstraints>
54+
<rowConstraints>
55+
<RowConstraints maxHeight="40.0" minHeight="10.0" prefHeight="40.0" vgrow="SOMETIMES" />
56+
<RowConstraints maxHeight="37.0" minHeight="10.0" prefHeight="37.0" vgrow="SOMETIMES" />
57+
<RowConstraints maxHeight="47.0" minHeight="10.0" prefHeight="37.0" vgrow="SOMETIMES" />
58+
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
59+
</rowConstraints>
60+
<children>
61+
<Label prefHeight="52.0" prefWidth="105.0" text="Algorithms" textFill="#dbf6fc" underline="true" GridPane.halignment="CENTER" GridPane.valignment="CENTER">
62+
<font>
63+
<Font size="20.0" />
64+
</font>
65+
<GridPane.margin>
66+
<Insets bottom="10.0" />
67+
</GridPane.margin>
68+
</Label>
69+
<JFXButton fx:id="dfsButton" graphicTextGap="2.0" prefHeight="38.0" prefWidth="192.0" text="DFS" textFill="#f8f6f6" GridPane.rowIndex="2">
70+
<font>
71+
<Font name="Quicksand-Regular" size="16.0" />
72+
</font>
73+
<opaqueInsets>
74+
<Insets />
75+
</opaqueInsets>
76+
<padding>
77+
<Insets left="-110.0" />
78+
</padding>
79+
<graphic>
80+
<ImageView fitHeight="11.0" fitWidth="13.0" pickOnBounds="true" preserveRatio="true">
81+
<image>
82+
<Image url="@../res/ButtonDot.png" />
83+
</image>
84+
</ImageView>
85+
</graphic>
86+
<GridPane.margin>
87+
<Insets left="5.0" right="5.0" />
88+
</GridPane.margin>
89+
</JFXButton>
90+
<JFXButton fx:id="bfsButton" graphicTextGap="2.0" prefHeight="38.0" prefWidth="202.0" text="BFS" textFill="#f8f6f6" GridPane.rowIndex="1">
91+
<font>
92+
<Font name="Quicksand-Regular" size="16.0" />
93+
</font>
94+
<opaqueInsets>
95+
<Insets />
96+
</opaqueInsets>
97+
<padding>
98+
<Insets left="-110.0" />
99+
</padding>
100+
<graphic>
101+
<ImageView fitHeight="11.0" fitWidth="13.0" pickOnBounds="true" preserveRatio="true">
102+
<image>
103+
<Image url="@../res/ButtonDot.png" />
104+
</image>
105+
</ImageView>
106+
</graphic>
107+
</JFXButton>
108+
</children>
109+
</GridPane>
110+
</children>
111+
</AnchorPane>
112+
</children>
113+
</AnchorPane>
2.78 KB
Binary file not shown.

build/classes/fxsimulator/Main.class

1.25 KB
Binary file not shown.

build/classes/fxsimulator/Node.class

3.39 KB
Binary file not shown.
Binary file not shown.
3.42 KB
Binary file not shown.
+105
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<?import com.jfoenix.controls.JFXButton?>
4+
<?import com.jfoenix.controls.JFXRadioButton?>
5+
<?import javafx.scene.Cursor?>
6+
<?import javafx.scene.control.Label?>
7+
<?import javafx.scene.control.Separator?>
8+
<?import javafx.scene.control.ToggleGroup?>
9+
<?import javafx.scene.control.Tooltip?>
10+
<?import javafx.scene.image.Image?>
11+
<?import javafx.scene.image.ImageView?>
12+
<?import javafx.scene.layout.AnchorPane?>
13+
<?import javafx.scene.layout.VBox?>
14+
<?import javafx.scene.text.Font?>
15+
16+
<AnchorPane xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fxsimulator.Panel1Controller">
17+
<children>
18+
<AnchorPane fx:id="panel1" prefHeight="530.0" prefWidth="800.0" style="-fx-background-color: #273c75;" visible="false" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
19+
<children>
20+
<JFXButton fx:id="drawGraph" alignment="CENTER" buttonType="RAISED" contentDisplay="CENTER" layoutX="132.5" layoutY="230.0" prefHeight="70.0" prefWidth="135.0" style="-fx-background-color: #8e44ad;" text=" Draw Graph" textAlignment="CENTER" wrapText="true">
21+
<font>
22+
<Font name="Junction Regular Regular" size="19.0" />
23+
</font>
24+
</JFXButton>
25+
<Separator layoutX="397.0" layoutY="145.0" orientation="VERTICAL" prefHeight="266.0" prefWidth="6.0" />
26+
<JFXButton fx:id="textInput" alignment="CENTER" buttonType="RAISED" contentDisplay="CENTER" layoutX="534.0" layoutY="230.0" prefHeight="70.0" prefWidth="135.0" style="-fx-background-color: #8e44ad;" text=" Text Input" textAlignment="CENTER" wrapText="true">
27+
<font>
28+
<Font name="Junction Regular Regular" size="19.0" />
29+
</font>
30+
</JFXButton>
31+
<JFXButton fx:id="panel2Back" contentDisplay="GRAPHIC_ONLY" layoutX="14.0" layoutY="14.0" prefHeight="41.0" prefWidth="55.0">
32+
<graphic>
33+
<ImageView fitHeight="34.0" fitWidth="40.0" pickOnBounds="true">
34+
<image>
35+
<Image url="@../../res/arrow-left.png" />
36+
</image>
37+
</ImageView>
38+
</graphic>
39+
</JFXButton>
40+
</children>
41+
</AnchorPane>
42+
<AnchorPane fx:id="panel2" prefHeight="530.0" prefWidth="800.0" style="-fx-background-color: #273c75;" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
43+
<children>
44+
<Label layoutX="210.0" layoutY="111.0" prefHeight="48.0" prefWidth="375.0" text="Select Graph Properties" textFill="#dfe4ea" AnchorPane.topAnchor="111.0">
45+
<font>
46+
<Font name="Signika Regular" size="37.0" />
47+
</font>
48+
</Label>
49+
<VBox layoutX="152.0" layoutY="245.0" prefHeight="88.0" prefWidth="135.0" spacing="30.0">
50+
<children>
51+
<JFXRadioButton fx:id="dButton" text="Directed" textFill="#dfe4ea">
52+
<font>
53+
<Font name="Aller" size="19.0" />
54+
</font>
55+
<toggleGroup>
56+
<ToggleGroup fx:id="direction" />
57+
</toggleGroup>
58+
</JFXRadioButton>
59+
<JFXRadioButton fx:id="udButton" text="Undirected" textFill="#dfe4ea" toggleGroup="$direction">
60+
<font>
61+
<Font name="Aller" size="19.0" />
62+
</font>
63+
</JFXRadioButton>
64+
</children>
65+
</VBox>
66+
<VBox layoutX="511.0" layoutY="245.0" prefHeight="88.0" prefWidth="148.0" spacing="25.0">
67+
<children>
68+
<JFXRadioButton fx:id="uwButton" text="Unweighted" textFill="#dfe4ea">
69+
<font>
70+
<Font name="Aller" size="19.0" />
71+
</font>
72+
<toggleGroup>
73+
<ToggleGroup fx:id="weight" />
74+
</toggleGroup>
75+
</JFXRadioButton>
76+
<JFXRadioButton fx:id="wButton" text="Weighted" textFill="#dfe4ea" toggleGroup="$weight">
77+
<font>
78+
<Font name="Aller" size="19.0" />
79+
</font>
80+
</JFXRadioButton>
81+
</children>
82+
</VBox>
83+
<JFXButton fx:id="panel1Next" alignment="CENTER" buttonType="RAISED" contentDisplay="GRAPHIC_ONLY" disable="true" layoutX="676.0" layoutY="416.0" prefHeight="31.0" prefWidth="55.0" ripplerFill="WHITE" AnchorPane.bottomAnchor="73.0" AnchorPane.rightAnchor="69.0">
84+
<graphic>
85+
<ImageView fitHeight="33.0" fitWidth="36.0" pickOnBounds="true" preserveRatio="true">
86+
<image>
87+
<Image url="@../../res/right-arrow.png" />
88+
</image>
89+
</ImageView>
90+
</graphic>
91+
<cursor>
92+
<Cursor fx:constant="HAND" />
93+
</cursor>
94+
<tooltip>
95+
<Tooltip text="Select above properties">
96+
<font>
97+
<Font name="Bariol" size="20.0" />
98+
</font>
99+
</Tooltip>
100+
</tooltip>
101+
</JFXButton>
102+
</children>
103+
</AnchorPane>
104+
</children>
105+
</AnchorPane>

build/classes/res/ButtonDot.png

573 Bytes
Loading

build/classes/res/arrow-left.png

628 Bytes
Loading

build/classes/res/right-arrow.png

504 Bytes
Loading

build/classes/right-arrow.png

504 Bytes
Loading

dist/FXSimulator_1.0.html

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<html><head>
2+
<SCRIPT src="./web-files/dtjava.js"></SCRIPT>
3+
<script>
4+
function launchApplication(jnlpfile) {
5+
dtjava.launch( {
6+
url : 'FXSimulator_1.0.jnlp',
7+
jnlp_content : 'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxqbmxwIHNwZWM9IjEuMCIgeG1sbnM6amZ4PSJodHRwOi8vamF2YWZ4LmNvbSIgaHJlZj0iRlhTaW11bGF0b3JfMS4wLmpubHAiPg0KICA8aW5mb3JtYXRpb24+DQogICAgPHRpdGxlPkZYU2ltdWxhdG9yXzEuMDwvdGl0bGU+DQogICAgPHZlbmRvcj5zb3dtZTwvdmVuZG9yPg0KICAgIDxkZXNjcmlwdGlvbj5udWxsPC9kZXNjcmlwdGlvbj4NCiAgICA8b2ZmbGluZS1hbGxvd2VkLz4NCiAgPC9pbmZvcm1hdGlvbj4NCiAgPHJlc291cmNlcz4NCiAgICA8ajJzZSB2ZXJzaW9uPSIxLjYrIiBocmVmPSJodHRwOi8vamF2YS5zdW4uY29tL3Byb2R1Y3RzL2F1dG9kbC9qMnNlIi8+DQogICAgPGphciBocmVmPSJGWFNpbXVsYXRvcl8xLjAuamFyIiBzaXplPSIxNDE5MyIgZG93bmxvYWQ9ImVhZ2VyIiAvPg0KICAgIDxqYXIgaHJlZj0ibGliXGpmb2VuaXgtOC4wLjQuamFyIiBzaXplPSIyNDg3MzI2IiBkb3dubG9hZD0iZWFnZXIiIC8+DQogICAgPGphciBocmVmPSJsaWJcamZ4dHJhcy1sYWJzLXNhbXBsZXMtOC4wLXI2LVNOQVBTSE9ULWFsbC5qYXIiIHNpemU9IjQ3ODUyMzIiIGRvd25sb2FkPSJlYWdlciIgLz4NCiAgPC9yZXNvdXJjZXM+DQogIDxhcHBsZXQtZGVzYyAgd2lkdGg9IjgwMCIgaGVpZ2h0PSI2MDAiIG1haW4tY2xhc3M9ImNvbS5qYXZhZngubWFpbi5Ob0phdmFGWEZhbGxiYWNrIiAgbmFtZT0iRlhTaW11bGF0b3JfMS4wIiA+DQogICAgPHBhcmFtIG5hbWU9InJlcXVpcmVkRlhWZXJzaW9uIiB2YWx1ZT0iOC4wKyIvPg0KICA8L2FwcGxldC1kZXNjPg0KICA8amZ4OmphdmFmeC1kZXNjICB3aWR0aD0iODAwIiBoZWlnaHQ9IjYwMCIgbWFpbi1jbGFzcz0iZnhzaW11bGF0b3IuTWFpbiIgIG5hbWU9IkZYU2ltdWxhdG9yXzEuMCIgLz4NCiAgPHVwZGF0ZSBjaGVjaz0iYWx3YXlzIi8+DQo8L2pubHA+DQo='
8+
},
9+
{
10+
javafx : '8.0+'
11+
},
12+
{}
13+
);
14+
return false;
15+
}
16+
</script>
17+
18+
<script>
19+
function javafxEmbedfxsimulator() {
20+
dtjava.embed(
21+
{
22+
id : 'fxsimulator',
23+
url : 'FXSimulator_1.0.jnlp',
24+
placeholder : 'javafx-app-placeholder',
25+
width : '800',
26+
height : '600',
27+
jnlp_content : 'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxqbmxwIHNwZWM9IjEuMCIgeG1sbnM6amZ4PSJodHRwOi8vamF2YWZ4LmNvbSIgaHJlZj0iRlhTaW11bGF0b3JfMS4wLmpubHAiPg0KICA8aW5mb3JtYXRpb24+DQogICAgPHRpdGxlPkZYU2ltdWxhdG9yXzEuMDwvdGl0bGU+DQogICAgPHZlbmRvcj5zb3dtZTwvdmVuZG9yPg0KICAgIDxkZXNjcmlwdGlvbj5udWxsPC9kZXNjcmlwdGlvbj4NCiAgICA8b2ZmbGluZS1hbGxvd2VkLz4NCiAgPC9pbmZvcm1hdGlvbj4NCiAgPHJlc291cmNlcz4NCiAgICA8ajJzZSB2ZXJzaW9uPSIxLjYrIiBocmVmPSJodHRwOi8vamF2YS5zdW4uY29tL3Byb2R1Y3RzL2F1dG9kbC9qMnNlIi8+DQogICAgPGphciBocmVmPSJGWFNpbXVsYXRvcl8xLjAuamFyIiBzaXplPSIxNDE5MyIgZG93bmxvYWQ9ImVhZ2VyIiAvPg0KICAgIDxqYXIgaHJlZj0ibGliXGpmb2VuaXgtOC4wLjQuamFyIiBzaXplPSIyNDg3MzI2IiBkb3dubG9hZD0iZWFnZXIiIC8+DQogICAgPGphciBocmVmPSJsaWJcamZ4dHJhcy1sYWJzLXNhbXBsZXMtOC4wLXI2LVNOQVBTSE9ULWFsbC5qYXIiIHNpemU9IjQ3ODUyMzIiIGRvd25sb2FkPSJlYWdlciIgLz4NCiAgPC9yZXNvdXJjZXM+DQogIDxhcHBsZXQtZGVzYyAgd2lkdGg9IjgwMCIgaGVpZ2h0PSI2MDAiIG1haW4tY2xhc3M9ImNvbS5qYXZhZngubWFpbi5Ob0phdmFGWEZhbGxiYWNrIiAgbmFtZT0iRlhTaW11bGF0b3JfMS4wIiA+DQogICAgPHBhcmFtIG5hbWU9InJlcXVpcmVkRlhWZXJzaW9uIiB2YWx1ZT0iOC4wKyIvPg0KICA8L2FwcGxldC1kZXNjPg0KICA8amZ4OmphdmFmeC1kZXNjICB3aWR0aD0iODAwIiBoZWlnaHQ9IjYwMCIgbWFpbi1jbGFzcz0iZnhzaW11bGF0b3IuTWFpbiIgIG5hbWU9IkZYU2ltdWxhdG9yXzEuMCIgLz4NCiAgPHVwZGF0ZSBjaGVjaz0iYWx3YXlzIi8+DQo8L2pubHA+DQo='
28+
},
29+
{
30+
javafx : '8.0+'
31+
},
32+
{}
33+
);
34+
}
35+
<!-- Embed FX application into web page once page is loaded -->
36+
dtjava.addOnloadCallback(javafxEmbedfxsimulator);
37+
</script>
38+
39+
</head><body>
40+
<h2>Test page for <b>FXSimulator_1.0</b></h2>
41+
<b>Webstart:</b> <a href='FXSimulator_1.0.jnlp' onclick="return launchApplication('FXSimulator_1.0.jnlp');">click to launch this app as webstart</a><br><hr><br>
42+
43+
<!-- Applet will be inserted here -->
44+
<div id='javafx-app-placeholder'></div>
45+
</body></html>

dist/FXSimulator_1.0.jar

13.9 KB
Binary file not shown.

dist/FXSimulator_1.0.jnlp

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<jnlp spec="1.0" xmlns:jfx="http://javafx.com" href="FXSimulator_1.0.jnlp">
3+
<information>
4+
<title>FXSimulator_1.0</title>
5+
<vendor>sowme</vendor>
6+
<description>null</description>
7+
<offline-allowed/>
8+
</information>
9+
<resources>
10+
<j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
11+
<jar href="FXSimulator_1.0.jar" size="14193" download="eager" />
12+
<jar href="lib\jfoenix-8.0.4.jar" size="2487326" download="eager" />
13+
<jar href="lib\jfxtras-labs-samples-8.0-r6-SNAPSHOT-all.jar" size="4785232" download="eager" />
14+
</resources>
15+
<applet-desc width="800" height="600" main-class="com.javafx.main.NoJavaFXFallback" name="FXSimulator_1.0" >
16+
<param name="requiredFXVersion" value="8.0+"/>
17+
</applet-desc>
18+
<jfx:javafx-desc width="800" height="600" main-class="fxsimulator.Main" name="FXSimulator_1.0" />
19+
<update check="always"/>
20+
</jnlp>

dist/lib/jfoenix-8.0.4.jar

2.37 MB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)