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.geometry.Insets; | |
| import javafx.geometry.Pos; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.Button; | |
| import javafx.scene.control.ToolBar; | |
| import javafx.scene.layout.HBox; | |
| import javafx.scene.layout.Priority; | |
| import javafx.stage.Stage; | 
  
    
      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
    
  
  
    
  | /** | |
| * © 2015 isp-insoft all rights reserved. | |
| */ | |
| package com.isp.lpt; | |
| import java.util.concurrent.CountDownLatch; | |
| import org.junit.runner.RunWith; | |
| import org.junit.runners.BlockJUnit4ClassRunner; | |
| import org.junit.runners.model.InitializationError; | 
  
    
      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
    
  
  
    
  | package application; | |
| import javafx.application.Application; | |
| import javafx.beans.binding.Bindings; | |
| import javafx.scene.Node; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.ProgressBar; | |
| import javafx.scene.effect.InnerShadow; | |
| import javafx.scene.image.Image; | |
| import javafx.scene.image.ImageView; | 
  
    
      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
    
  
  
    
  | package com.isp.stackoverflow; | |
| import java.util.stream.Collectors; | |
| import java.util.stream.IntStream; | |
| import javafx.application.Application; | |
| import javafx.beans.Observable; | |
| import javafx.beans.binding.Bindings; | |
| import javafx.beans.property.IntegerProperty; | |
| import javafx.beans.property.SimpleIntegerProperty; | 
  
    
      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
    
  
  
    
  | package com.isp.stackoverflow; | |
| import javafx.application.Application; | |
| import javafx.geometry.Insets; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.Button; | |
| import javafx.scene.control.Label; | |
| import javafx.scene.layout.FlowPane; | |
| import javafx.stage.Stage; | 
  
    
      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
    
  
  
    
  | package com.isp.stackoverflow; | |
| import javafx.application.Application; | |
| import javafx.beans.binding.DoubleBinding; | |
| import javafx.scene.Scene; | |
| import javafx.scene.image.ImageView; | |
| import javafx.scene.layout.ColumnConstraints; | |
| import javafx.scene.layout.GridPane; | |
| import javafx.scene.layout.Pane; | |
| import javafx.scene.layout.RowConstraints; | 
  
    
      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
    
  
  
    
  | package com.isp.stackoverflow; | |
| import javafx.application.Application; | |
| import javafx.geometry.Insets; | |
| import javafx.geometry.VPos; | |
| import javafx.scene.Node; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.Label; | |
| import javafx.scene.layout.Background; | |
| import javafx.scene.layout.BackgroundFill; | 
  
    
      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.scene.Scene; | |
| import javafx.scene.control.DatePicker; | |
| import javafx.scene.layout.StackPane; | |
| import javafx.stage.Stage; | |
| /** | |
| * How to show the UI of a DatePicker constantly. | |
| * | 
  
    
      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
    
  
  
    
  | package net.bugabinga.javafx.util; | |
| import static java.util.stream.Collectors.toList; | |
| import java.util.List; | |
| import java.util.function.Function; | |
| import javafx.collections.ListChangeListener.Change; | |
| import javafx.collections.ObservableList; | |
| import javafx.collections.ObservableListBase; | 
  
    
      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.scene.Scene; | |
| import javafx.scene.web.WebEngine; | |
| import javafx.scene.web.WebView; | |
| import javafx.stage.Stage; | |
| import netscape.javascript.JSObject; | |
| /** | |
| * https://stackoverflow.com/questions/35758313/consistent-setmember-on-javafx-window | |
| * |