In a UI component, lets say you have two context nodes and in each context node, there are multiple attributes. All of these attributes have a SETTER method defined.
Can somebody tell me what determines the order in which each SETTER method will get executed during the roundtrip? Is the order of execution driven by naming convention? If yes, then names of what?
Is the order driven by where those attributes are placed in the View?
Or is the order of execution just random?
I am just trying to understand this concept so that I can manipulate the order of execution.
Thanks.