Is there a way I can disable synthetic property ex...
# announcements
v
Is there a way I can disable synthetic property extensions generated for getter methods of java classes? I want to define my property extension having a name conflicting with the original getter method of the java class.
g
synthetic property of java classes? What do you mean? about auto-properties, like
javaClass.getName()
->
javaClass.name
?
v
Yes
I wanted to define a property extension called “name” but it does thing more than just the original getName() method. However the newly defined “name” extension is shadowed by the original getName() method.
g
No, there is no way to do that
v
Okay, thanks