Open ronjunevaldoz opened 6 years ago
Having hard time, implementing IDialog using kotlin, because kotlin automatically generates getter setter, problem is IDialog having getter and setter
IDialog
public interface IDialog<MESSAGE extends IMessage> { String getId(); String getDialogPhoto(); String getDialogName(); List<? extends IUser> getUsers(); MESSAGE getLastMessage(); void setLastMessage(MESSAGE message); int getUnreadCount(); }
Any update on this? I had to use different Ctor names to avoid this kind of clash but its kinda dirty!
Issue #24 answers this nicely!
Having hard time, implementing IDialog using kotlin, because kotlin automatically generates getter setter, problem is
IDialog
having getter and setter