Difference between JavaFX node and UI component?

What is the difference between JavaFX node and UI component?

I understand that both concepts are similar, but I'm sure there is a reason why we call JavaFX node a node and not Component.

+2


a source to share


1 answer


Soon, node is a common element in the scene tree. A component, as a general one, is understood as a composition of several nodes (in JavaFX), enriched with some kind of behavior. In JavaFX, we have no components. Rather, we called them controls.



+3


a source







All Articles