This file contains hidden or 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
| import javafx.application.Application; | |
| import javafx.application.Platform; | |
| import javafx.concurrent.Service; | |
| import javafx.concurrent.Task; | |
| import javafx.event.ActionEvent; | |
| import javafx.event.EventHandler; | |
| import javafx.geometry.Pos; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.Button; | |
| import javafx.scene.control.Label; |
This file contains hidden or 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
| import java.util.concurrent.ForkJoinPool; | |
| import java.util.concurrent.RecursiveTask; | |
| public class FibonacciTest { | |
| /** | |
| * @param args | |
| */ | |
| public static void main(String[] args) { | |
| Long n = 20L; |
This file contains hidden or 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
| public class WebTesting extends Application{ | |
| public static void main(String[] args){ | |
| launch(args); | |
| } | |
| @Override | |
| public void start(Stage stage) throws Exception { | |
| VBox vbox = new VBox(10); |