It appears that the Kotlin compiler generates methods for var and val properties with the usual Java naming conventions -- getFoo, setFoo, but you can access these as obj.foo in Kotlin. The same does not work for Java -- if a Java class has a property foo, I need to get it with obj.getFoo(). Is this correct? Or is there a way to use the obj.foo syntax for Java objects?
thanks,
Rob