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

CustomNode create() function is called before the init block of the subclass

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P2 P2
    • fx1.3
    • None
    • javafx
    • Product Version: NetBeans IDE 6.7.1 (Build 200907230233)
      Java: 1.6.0_15; Java HotSpot(TM) Client VM 14.1-b02
      System: Windows XP version 5.1 running on x86; Cp1252; nl_BE (nb)

      The code of init{} of a subclass of CustomNode is execute AFTER the call to the create():Node function. I guess because this function is called in CustomNode init{}.

      Doing so forces the object's initialization code to be put into the create() function instead of the init{} - where it is supposed to be. Besides this, there's something counter-intiutive in calling an object function BEFORE it's init{} has completed.

      ============
      CODE SAMPLE
      ============

      /*
       * EarlyNode.fx
       *
       * Code sample to show CustomNode initializes too early.
       *
       * Created on 13-aug-2009, 13:46:11
       */

      package testfx;

      import javafx.stage.Stage;
      import javafx.scene.*;
      import javafx.scene.shape.Circle;

      class Tire extends CustomNode {

          var diameter = 0;
          var radius = 0;

          init {
              println("Initializing node - executed AFTER the create() function");
              radius = diameter/2;
          }

          override public function create():Node {
              println("Creating node - executed BEFORE the init block");
              Circle {
                  centerX: diameter + 20
                  centerY: diameter + 20;
                  radius: radius;
              }
          }
      }


      Stage {
          title: "Application title"
          scene: Scene {
              content: Tire{
                          diameter: 50;
                       };
          }
      }

            kcr Kevin Rushforth
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: