Re: Some questions on implementing java interfaces

2019-01-20 Thread Petrus Hyvönen
Hi Andy, Thanks for your email, it answers my questions. I am doing a bunch of java classes with extension points, and as it is sometimes hard to judge if a default method may be needed as extension point in some scenario, I am rather tending towards putting an extension point and let the user of

Re: Some questions on implementing java interfaces

2019-01-19 Thread Andi Vajda
Hi Petrus, On Sat, 19 Jan 2019, Petrus Hyvönen wrote: I am working on wrapping a number of (java) interfaces as python classes (through JCC). Typically I have an "Interface" and make a class "PythonInterface", where I take the methods and make public nativec mehtods of them. In some cases

Some questions on implementing java interfaces

2019-01-19 Thread Petrus Hyvönen
Hi all, I am working on wrapping a number of (java) interfaces as python classes (through JCC). Typically I have an "Interface" and make a class "PythonInterface", where I take the methods and make public nativec mehtods of them. In some cases my Interfaces has methods of same name but different