Skip to content

Commit b8492fb

Browse files
Create BUKKIT
1 parent 315626a commit b8492fb

File tree

73 files changed

+10368
-0
lines changed

Some content is hidden

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

73 files changed

+10368
-0
lines changed

BUKKIT/build.xml

Lines changed: 53 additions & 0 deletions
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="AutofastForward(alpha1)" default="default" basedir="." xmlns:fx="javafx:com.sun.javafx.tools.ant">
2+
<description>Builds, tests, and runs the project AutofastForward(alpha1).</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>

BUKKIT/build/built-jar.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#Sun, 17 Nov 2019 11:51:04 -0500
2+
3+
4+
C\:\\Users\\niris\\OneDrive\\Documents\\NetBeansProjects\\AutofastForward(alpha1)=
1.67 KB
Binary file not shown.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<?import javafx.scene.control.Button?>
4+
<?import javafx.scene.control.Label?>
5+
<?import javafx.scene.control.TextField?>
6+
<?import javafx.scene.image.Image?>
7+
<?import javafx.scene.image.ImageView?>
8+
<?import javafx.scene.layout.AnchorPane?>
9+
10+
11+
<AnchorPane id="AnchorPane" maxHeight="194" maxWidth="310" minHeight="194" minWidth="310" prefHeight="194" prefWidth="310" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="autofastforward.alpha1.FXMLDocumentController">
12+
<children>
13+
<ImageView fitHeight="206.0" fitWidth="320.0" layoutY="-2.0">
14+
<image>
15+
<Image url="@theme_1.png" />
16+
</image>
17+
</ImageView>
18+
<Button fx:id="button" layoutX="55.0" layoutY="88.0" onAction="#handleButtonAction" text="Open Port" />
19+
<Button fx:id="button1" layoutX="195.0" layoutY="88.0" onAction="#handleButtonAction2" text="Close Port" />
20+
<TextField fx:id="portbox" layoutX="71.0" layoutY="48.0" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="25.0" prefWidth="204.0" text="25565" />
21+
<Label fx:id="label" layoutX="126" layoutY="120" minHeight="16" minWidth="69" textFill="WHITE" />
22+
<Label layoutX="46.0" layoutY="52.0" prefHeight="17.0" prefWidth="26.0" text="Port" textFill="WHITE" />
23+
</children>
24+
</AnchorPane>
1.84 KB
Binary file not shown.
1.12 KB
Loading
29.1 KB
Loading
118 KB
Loading
86.4 KB
Loading
8.27 KB
Binary file not shown.

0 commit comments

Comments
 (0)