B4J Question Can it be done ? using inline java to extend a class ?

TelKel81

Active Member
Licensed User
My goal is a smooth animation when the repositionning of nodes occur inside a container (by overriding the layoutChildren() method).
Java:
public class AnimatedTilePane extends TilePane {

    @Override
    protected void layoutChildren() {

        super.layoutChildren();

        for (Node child : getChildren()) {
       }
    }
}
 
Top