Hello, I was trying to test Tornado in a Java envi...
# tornadofx
r
Hello, I was trying to test Tornado in a Java environment. Using the ViewModel and ItemViewModel.
private SimpleLongProperty id = bindGetter(RuleSet::getId, false, false);
I end up with an error message saying that `bindGetter`method has private access in
tornado.ItemViewModel
. In the kotlin code I never saw private modifier on those method, so I don't understand what's happening here. Any ideas ?