|
Question - not sure if there is a way to specify which overloaded method to use or if this needs to be a change in UILoader So jSplitPane has two methods to set the divider location If I specify a double in the markup UiLoader calls the int version which fails. |
Answered by
gk-brown
Nov 21, 2025
Replies: 1 comment
|
We could add custom logic to |
0 replies
Answer selected by
gk-brown
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
BeanAdapterdoesn't support overloaded setters - it only uses the setter with the same type as the getter. So this is a case where the value would have to be set programmatically.We could add custom logic to
UILoaderto support this particular case, but I don't think it's worth it.