JavaFX's Tab does not descend from Node.
I'm trying to play around with Tab's pseudo-classes, but the pseudoClassStateChanged() method is just missing.
There are definitely pseudo-classes for tabs, like :disabled when
tab.setDisable(true)
is set. There also exists a method
tab.getPseudoClassStates()
Which return's an unmodifiable set.
How do I proceed?