I'm working on a polymorphic bean and I'd like to change the display based on a user choice made in the parent Bean.
For instance i'm trying to display different information on a repository
So the choice of the repository is in the parent Bean and there's a ChildBeans listing information based on the
chosen repository.
I thought I could use a PropertyChangedListener but it doesn't look like we're going through the setter each time the user change his choice.
Also I'm using ChoiceProvider and the fact that it needs a static method is not helping me...
Am I missing something obvious to do this easily ??
Thanks