-
Bug
-
Resolution: Fixed
-
P2
-
None
-
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;
};
}
}
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;
};
}
}
- blocks
-
JDK-8107644 CustomNode needs to document that create() is called from postinit block
-
- Closed
-