package bugsfiling; import javafx.application.Application; import javafx.builders.GroupBuilder; import javafx.builders.ProgressIndicatorBuilder; import javafx.scene.Parent; import javafx.scene.Scene; import javafx.scene.control.ProgressIndicator; import javafx.stage.Stage; /** * * @author Alexander Kouznetsov */ public class ProgressIndicatorTest extends Application { public static void main(String[] args) { launch(args); } @Override public void start(Stage stage) throws Exception { ProgressIndicator progressIndicator = new ProgressIndicatorBuilder() .progress(-1) .build(); Parent root = new GroupBuilder() .translateX(50) .translateY(50) .children(progressIndicator) .build(); Scene scene = new Scene(root, 200, 200); stage.setScene(scene); stage.setVisible(true); } }