(JavaFX 2.0 beta b28/b29 + JDK 1.6.0_25 + WinXP SP3)
TextArea.setColumnCount() caused java.lang.StackOverflowError
Below codes for re-producing
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.stage.Stage;
import com.javafx.preview.control.TextArea;
/**
*
* @author lianqi.li
*/
public class TextAreaIssue extends Application {
@Override public void start(Stage stage) {
final Group root = new Group();
final Scene scene = new Scene(root, 800, 600);
final TextArea ta = new TextArea();
ta.setColumnCount(10);
root.getChildren().addAll(ta);
stage.setScene(scene);
stage.setVisible(true);
}
public static void main(String[] args) {
Application.launch(TextAreaIssue.class, args);
}
}
TextArea.setColumnCount() caused java.lang.StackOverflowError
Below codes for re-producing
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.stage.Stage;
import com.javafx.preview.control.TextArea;
/**
*
* @author lianqi.li
*/
public class TextAreaIssue extends Application {
@Override public void start(Stage stage) {
final Group root = new Group();
final Scene scene = new Scene(root, 800, 600);
final TextArea ta = new TextArea();
ta.setColumnCount(10);
root.getChildren().addAll(ta);
stage.setScene(scene);
stage.setVisible(true);
}
public static void main(String[] args) {
Application.launch(TextAreaIssue.class, args);
}
}