-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit dc50ae5
Showing
37 changed files
with
10,984 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?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="Function_Point" default="default" basedir="." xmlns:fx="javafx:com.sun.javafx.tools.ant"> | ||
<description>Builds, tests, and runs the project Function Point.</description> | ||
<import file="nbproject/build-impl.xml"/> | ||
<!-- | ||
There exist several targets which are by default empty and which can be | ||
used for execution of your tasks. These targets are usually executed | ||
before and after some main targets. Those of them relevant for JavaFX project are: | ||
-pre-init: called before initialization of project properties | ||
-post-init: called after initialization of project properties | ||
-pre-compile: called before javac compilation | ||
-post-compile: called after javac compilation | ||
-pre-compile-test: called before javac compilation of JUnit tests | ||
-post-compile-test: called after javac compilation of JUnit tests | ||
-pre-jfx-jar: called before FX SDK specific <fx:jar> task | ||
-post-jfx-jar: called after FX SDK specific <fx:jar> task | ||
-pre-jfx-deploy: called before FX SDK specific <fx:deploy> task | ||
-post-jfx-deploy: called after FX SDK specific <fx:deploy> task | ||
-pre-jfx-native: called just after -pre-jfx-deploy if <fx:deploy> runs in native packaging mode | ||
-post-jfx-native: called just after -post-jfx-deploy if <fx:deploy> runs in native packaging mode | ||
-post-clean: called after cleaning build products | ||
(Targets beginning with '-' are not intended to be called on their own.) | ||
Example of inserting a HTML postprocessor after javaFX SDK deployment: | ||
<target name="-post-jfx-deploy"> | ||
<basename property="jfx.deployment.base" file="${jfx.deployment.jar}" suffix=".jar"/> | ||
<property name="jfx.deployment.html" location="${jfx.deployment.dir}${file.separator}${jfx.deployment.base}.html"/> | ||
<custompostprocess> | ||
<fileset dir="${jfx.deployment.html}"/> | ||
</custompostprocess> | ||
</target> | ||
Example of calling an Ant task from JavaFX SDK. Note that access to JavaFX SDK Ant tasks must be | ||
initialized; to ensure this is done add the dependence on -check-jfx-sdk-version target: | ||
<target name="-post-jfx-jar" depends="-check-jfx-sdk-version"> | ||
<echo message="Calling jar task from JavaFX SDK"/> | ||
<fx:jar ...> | ||
... | ||
</fx:jar> | ||
</target> | ||
For more details about JavaFX SDK Ant tasks go to | ||
http://docs.oracle.com/javafx/2/deployment/jfxpub-deployment.htm | ||
For list of available properties check the files | ||
nbproject/build-impl.xml and nbproject/jfx-impl.xml. | ||
--> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#Thu, 06 Apr 2017 02:25:08 +0700 | ||
|
||
|
||
D\:\\`Coding\\Java\\Function\ Point= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import javafx.geometry.*?> | ||
<?import javafx.scene.text.*?> | ||
<?import com.jfoenix.controls.*?> | ||
<?import java.lang.*?> | ||
<?import java.util.*?> | ||
<?import javafx.scene.*?> | ||
<?import javafx.scene.control.*?> | ||
<?import javafx.scene.layout.*?> | ||
|
||
<AnchorPane id="AnchorPane" minHeight="-Infinity" minWidth="-Infinity" prefHeight="605.0" prefWidth="938.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="function.point.FXMLDocumentController"> | ||
<children> | ||
<GridPane layoutX="151.0" layoutY="83.0" prefHeight="477.0" prefWidth="626.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="20.0" AnchorPane.rightAnchor="20.0"> | ||
<columnConstraints> | ||
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" /> | ||
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" /> | ||
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" /> | ||
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" /> | ||
</columnConstraints> | ||
<rowConstraints> | ||
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> | ||
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> | ||
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> | ||
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> | ||
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> | ||
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> | ||
</rowConstraints> | ||
<children> | ||
<JFXTextField fx:id="tinput" focusColor="#009d7e" labelFloat="true" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="25.0" prefWidth="191.0" promptText="Tipe Input" GridPane.halignment="CENTER" GridPane.hgrow="NEVER" GridPane.valignment="CENTER" GridPane.vgrow="NEVER"> | ||
<GridPane.margin> | ||
<Insets /> | ||
</GridPane.margin> | ||
</JFXTextField> | ||
<JFXTextField fx:id="tquery" focusColor="#009d7e" labelFloat="true" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="25.0" prefWidth="191.0" promptText="Tipe Query" GridPane.halignment="CENTER" GridPane.rowIndex="2" GridPane.valignment="CENTER" /> | ||
<JFXTextField fx:id="toutput" focusColor="#009d7e" labelFloat="true" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="25.0" prefWidth="191.0" promptText="Tipe Output" GridPane.halignment="CENTER" GridPane.rowIndex="1" GridPane.valignment="CENTER" /> | ||
<JFXButton buttonType="RAISED" prefHeight="40.0" prefWidth="100.0" style="-fx-background-color: #009D7E;" text="Button" textFill="WHITE" GridPane.columnIndex="3" GridPane.rowIndex="5"> | ||
<font> | ||
<Font name="Roboto Bold" size="12.0" /> | ||
</font> | ||
</JFXButton> | ||
<JFXComboBox fx:id="tsatu" focusColor="#009d7e" labelFloat="true" prefHeight="25.0" prefWidth="191.0" promptText="Pilih nilai" GridPane.columnIndex="1" GridPane.halignment="CENTER" GridPane.valignment="CENTER" /> | ||
<JFXColorPicker GridPane.columnIndex="2" GridPane.rowIndex="5" /> | ||
<JFXTextField fx:id="tfile" focusColor="#009d7e" labelFloat="true" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="25.0" prefWidth="191.0" promptText="Tipe File" GridPane.halignment="CENTER" GridPane.rowIndex="3" GridPane.valignment="CENTER" /> | ||
<JFXTextField fx:id="tinterfacex" focusColor="#009d7e" labelFloat="true" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="25.0" prefWidth="191.0" promptText="Tipe Interface External" GridPane.halignment="CENTER" GridPane.rowIndex="4" GridPane.valignment="CENTER" /> | ||
<JFXComboBox fx:id="tdua" focusColor="#009d7e" labelFloat="true" prefHeight="25.0" prefWidth="191.0" promptText="Pilih nilai" GridPane.columnIndex="1" GridPane.halignment="CENTER" GridPane.rowIndex="1" GridPane.valignment="CENTER" /> | ||
<JFXComboBox fx:id="ttiga" focusColor="#009d7e" labelFloat="true" prefHeight="25.0" prefWidth="191.0" promptText="Pilih nilai" GridPane.columnIndex="1" GridPane.halignment="CENTER" GridPane.rowIndex="2" GridPane.valignment="CENTER" /> | ||
<JFXComboBox fx:id="tempat" focusColor="#009d7e" labelFloat="true" prefHeight="25.0" prefWidth="191.0" promptText="Pilih nilai" GridPane.columnIndex="1" GridPane.halignment="CENTER" GridPane.rowIndex="3" GridPane.valignment="CENTER" /> | ||
<JFXComboBox fx:id="tlima" focusColor="#009d7e" labelFloat="true" prefHeight="25.0" prefWidth="191.0" promptText="Pilih nilai" GridPane.columnIndex="1" GridPane.halignment="CENTER" GridPane.rowIndex="4" GridPane.valignment="CENTER" /> | ||
<JFXComboBox fx:id="tenam" focusColor="#009d7e" labelFloat="true" prefHeight="25.0" prefWidth="191.0" promptText="Pilih nilai" GridPane.columnIndex="2" GridPane.halignment="CENTER" GridPane.valignment="CENTER" /> | ||
<JFXComboBox fx:id="ttujuh" focusColor="#009d7e" labelFloat="true" prefHeight="25.0" prefWidth="191.0" promptText="Pilih nilai" GridPane.columnIndex="2" GridPane.halignment="CENTER" GridPane.rowIndex="1" GridPane.valignment="CENTER" /> | ||
<JFXComboBox fx:id="tdelapan" focusColor="#009d7e" labelFloat="true" prefHeight="25.0" prefWidth="191.0" promptText="Pilih nilai" GridPane.columnIndex="2" GridPane.halignment="CENTER" GridPane.rowIndex="2" GridPane.valignment="CENTER" /> | ||
<JFXComboBox fx:id="tsembilan" focusColor="#009d7e" labelFloat="true" prefHeight="25.0" prefWidth="191.0" promptText="Pilih nilai" GridPane.columnIndex="2" GridPane.halignment="CENTER" GridPane.rowIndex="3" GridPane.valignment="CENTER" /> | ||
<JFXComboBox fx:id="tsepuluh" focusColor="#009d7e" labelFloat="true" prefHeight="25.0" prefWidth="191.0" promptText="Pilih nilai" GridPane.columnIndex="2" GridPane.halignment="CENTER" GridPane.rowIndex="4" GridPane.valignment="CENTER" /> | ||
<JFXComboBox fx:id="tsebelas" focusColor="#009d7e" labelFloat="true" prefHeight="25.0" prefWidth="191.0" promptText="Pilih nilai" GridPane.columnIndex="3" GridPane.halignment="CENTER" GridPane.valignment="CENTER" /> | ||
<JFXComboBox fx:id="tduabelas" focusColor="#009d7e" labelFloat="true" prefHeight="25.0" prefWidth="191.0" promptText="Pilih nilai" GridPane.columnIndex="3" GridPane.halignment="CENTER" GridPane.rowIndex="1" GridPane.valignment="CENTER" /> | ||
<JFXComboBox fx:id="ttigabelas" focusColor="#009d7e" labelFloat="true" prefHeight="25.0" prefWidth="191.0" promptText="Pilih nilai" GridPane.columnIndex="3" GridPane.halignment="CENTER" GridPane.rowIndex="2" GridPane.valignment="CENTER" /> | ||
<JFXComboBox fx:id="tempatbelas" focusColor="#009d7e" labelFloat="true" prefHeight="25.0" prefWidth="191.0" promptText="Pilih nilai" GridPane.columnIndex="3" GridPane.halignment="CENTER" GridPane.rowIndex="3" GridPane.valignment="CENTER" /> | ||
<JFXComboBox fx:id="tlimabelas" focusColor="#009d7e" labelFloat="true" prefHeight="25.0" prefWidth="191.0" promptText="Pilih nilai" GridPane.columnIndex="3" GridPane.halignment="CENTER" GridPane.rowIndex="4" GridPane.valignment="CENTER" /> | ||
</children> | ||
</GridPane> | ||
</children> | ||
</AnchorPane> |
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<html><head> | ||
<SCRIPT src="./web-files/dtjava.js"></SCRIPT> | ||
<script> | ||
function launchApplication(jnlpfile) { | ||
dtjava.launch( { | ||
url : 'Function Point.jnlp', | ||
jnlp_content : 'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxqbmxwIHNwZWM9IjEuMCIgeG1sbnM6amZ4PSJodHRwOi8vamF2YWZ4LmNvbSIgaHJlZj0iRnVuY3Rpb24gUG9pbnQuam5scCI+DQogIDxpbmZvcm1hdGlvbj4NCiAgICA8dGl0bGU+RnVuY3Rpb24gUG9pbnQ8L3RpdGxlPg0KICAgIDx2ZW5kb3I+U3VjaGFpbWk8L3ZlbmRvcj4NCiAgICA8ZGVzY3JpcHRpb24+bnVsbDwvZGVzY3JpcHRpb24+DQogICAgPG9mZmxpbmUtYWxsb3dlZC8+DQogIDwvaW5mb3JtYXRpb24+DQogIDxyZXNvdXJjZXM+DQogICAgPGoyc2UgdmVyc2lvbj0iMS42KyIgaHJlZj0iaHR0cDovL2phdmEuc3VuLmNvbS9wcm9kdWN0cy9hdXRvZGwvajJzZSIvPg0KICAgIDxqYXIgaHJlZj0ibGliXGpmb2VuaXguamFyIiBzaXplPSIyMzU0NzIwIiBkb3dubG9hZD0iZWFnZXIiIC8+DQogIDwvcmVzb3VyY2VzPg0KICA8YXBwbGV0LWRlc2MgIHdpZHRoPSI4MDAiIGhlaWdodD0iNjAwIiBtYWluLWNsYXNzPSJjb20uamF2YWZ4Lm1haW4uTm9KYXZhRlhGYWxsYmFjayIgIG5hbWU9IkZ1bmN0aW9uIFBvaW50IiA+DQogICAgPHBhcmFtIG5hbWU9InJlcXVpcmVkRlhWZXJzaW9uIiB2YWx1ZT0iOC4wKyIvPg0KICA8L2FwcGxldC1kZXNjPg0KICA8amZ4OmphdmFmeC1kZXNjICB3aWR0aD0iODAwIiBoZWlnaHQ9IjYwMCIgbWFpbi1jbGFzcz0iZnVuY3Rpb24ucG9pbnQuRnVuY3Rpb25Qb2ludCIgIG5hbWU9IkZ1bmN0aW9uIFBvaW50IiAvPg0KICA8dXBkYXRlIGNoZWNrPSJhbHdheXMiLz4NCjwvam5scD4NCg==' | ||
}, | ||
{ | ||
javafx : '8.0+' | ||
}, | ||
{} | ||
); | ||
return false; | ||
} | ||
</script> | ||
|
||
<script> | ||
function javafxEmbedfunction.point() { | ||
dtjava.embed( | ||
{ | ||
id : 'function.point', | ||
url : 'Function Point.jnlp', | ||
placeholder : 'javafx-app-placeholder', | ||
width : '800', | ||
height : '600', | ||
jnlp_content : 'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxqbmxwIHNwZWM9IjEuMCIgeG1sbnM6amZ4PSJodHRwOi8vamF2YWZ4LmNvbSIgaHJlZj0iRnVuY3Rpb24gUG9pbnQuam5scCI+DQogIDxpbmZvcm1hdGlvbj4NCiAgICA8dGl0bGU+RnVuY3Rpb24gUG9pbnQ8L3RpdGxlPg0KICAgIDx2ZW5kb3I+U3VjaGFpbWk8L3ZlbmRvcj4NCiAgICA8ZGVzY3JpcHRpb24+bnVsbDwvZGVzY3JpcHRpb24+DQogICAgPG9mZmxpbmUtYWxsb3dlZC8+DQogIDwvaW5mb3JtYXRpb24+DQogIDxyZXNvdXJjZXM+DQogICAgPGoyc2UgdmVyc2lvbj0iMS42KyIgaHJlZj0iaHR0cDovL2phdmEuc3VuLmNvbS9wcm9kdWN0cy9hdXRvZGwvajJzZSIvPg0KICAgIDxqYXIgaHJlZj0ibGliXGpmb2VuaXguamFyIiBzaXplPSIyMzU0NzIwIiBkb3dubG9hZD0iZWFnZXIiIC8+DQogIDwvcmVzb3VyY2VzPg0KICA8YXBwbGV0LWRlc2MgIHdpZHRoPSI4MDAiIGhlaWdodD0iNjAwIiBtYWluLWNsYXNzPSJjb20uamF2YWZ4Lm1haW4uTm9KYXZhRlhGYWxsYmFjayIgIG5hbWU9IkZ1bmN0aW9uIFBvaW50IiA+DQogICAgPHBhcmFtIG5hbWU9InJlcXVpcmVkRlhWZXJzaW9uIiB2YWx1ZT0iOC4wKyIvPg0KICA8L2FwcGxldC1kZXNjPg0KICA8amZ4OmphdmFmeC1kZXNjICB3aWR0aD0iODAwIiBoZWlnaHQ9IjYwMCIgbWFpbi1jbGFzcz0iZnVuY3Rpb24ucG9pbnQuRnVuY3Rpb25Qb2ludCIgIG5hbWU9IkZ1bmN0aW9uIFBvaW50IiAvPg0KICA8dXBkYXRlIGNoZWNrPSJhbHdheXMiLz4NCjwvam5scD4NCg==' | ||
}, | ||
{ | ||
javafx : '8.0+' | ||
}, | ||
{} | ||
); | ||
} | ||
<!-- Embed FX application into web page once page is loaded --> | ||
dtjava.addOnloadCallback(javafxEmbedfunction.point); | ||
</script> | ||
|
||
</head><body> | ||
<h2>Test page for <b>Function Point</b></h2> | ||
<b>Webstart:</b> <a href='Function Point.jnlp' onclick="return launchApplication('Function Point.jnlp');">click to launch this app as webstart</a><br><hr><br> | ||
|
||
<!-- Applet will be inserted here --> | ||
<div id='javafx-app-placeholder'></div> | ||
</body></html> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<jnlp spec="1.0" xmlns:jfx="http://javafx.com" href="Function Point.jnlp"> | ||
<information> | ||
<title>Function Point</title> | ||
<vendor>Suchaimi</vendor> | ||
<description>null</description> | ||
<offline-allowed/> | ||
</information> | ||
<resources> | ||
<j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/> | ||
<jar href="lib\jfoenix.jar" size="2354720" download="eager" /> | ||
</resources> | ||
<applet-desc width="800" height="600" main-class="com.javafx.main.NoJavaFXFallback" name="Function Point" > | ||
<param name="requiredFXVersion" value="8.0+"/> | ||
</applet-desc> | ||
<jfx:javafx-desc width="800" height="600" main-class="function.point.FunctionPoint" name="Function Point" /> | ||
<update check="always"/> | ||
</jnlp> |
Oops, something went wrong.