pablisco
10/02/2018, 12:29 PMget
?Yann Badoual
10/02/2018, 12:36 PMTo change the names of generated accessor methods for properties without explicitly implemented getters and setters, you can use @get:JvmName and @set:JvmName:
pablisco
10/02/2018, 12:40 PMAndreas Sinz
10/02/2018, 12:44 PMpablisco
10/02/2018, 12:44 PMHamza
10/02/2018, 12:44 PMpablisco
10/02/2018, 12:45 PMhho
10/02/2018, 2:07 PMval Foo.someProperty: Bar
get() = somePropertyGetter()
pablisco
10/02/2018, 2:19 PM(without extfuns)Don't really want to have hundreds of extension properties all over the code
@Property
public String title() { return title }
hho
10/02/2018, 2:22 PMpablisco
10/02/2018, 2:32 PM