/* * To change this template, choose Tools | Templates * and open the template in the editor. */ import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.ScrollPane; import javafx.scene.shape.Rectangle; import javafx.stage.Stage; /** * * @author elp */ public class NPEScrollpane extends Application { /** * @param args the command line arguments */ public static void main(String[] args) { Application.launch(args); } /* * Runnable */ @Override public void start(Stage stage) { ScrollPane scrollPane; Scene scene; scrollPane = new ScrollPane(); scrollPane.setPannable(true); scrollPane.setHbarPolicy(ScrollPane.ScrollBarPolicy.ALWAYS); scrollPane.setVbarPolicy(ScrollPane.ScrollBarPolicy.ALWAYS); Rectangle r = new Rectangle(100, 100); Group g = new Group(scrollPane, r); scene = new Scene(g, 640, 400); stage.setScene(scene); stage.sizeToScene(); stage.setTitle("ScrollPaneTest"); stage.setVisible(true); } }