//
dataPane = new WebView();
dataPane.setPrefWidth(500);
dataPane.setPrefHeight(1000);
//
SimplePane messagePane = new SimplePane(true);
messagePane.setStyle("-fx-background-color:red");
messagePane.getChildren().add(indexPane);
messagePane.getChildren().add(dataPane);
//
ScrollPane scrollPane = new ScrollPane();
scrollPane.setContent(messagePane);
getItems().addAll(scrollPane, packetTreeView);
//