Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8113399

TextArea.setColumnCount() caused java.lang.StackOverflowError

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • fx2.0
    • fx2.0
    • javafx
    • JavaFX 2.0 beta b28/b29 + JDK 1.6.0_25 + WinXP SP3

      (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);
          }
      }

            lianqli Lianqi Li (Inactive)
            lianqli Lianqi Li (Inactive)
            Votes:
            1 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: