Re: [fpc-other] Object Pascal Interface Delegation, but in Java

2017-09-09 Thread Marco van de Voort
In our previous episode, Graeme Geldenhuys said: > > That is often called delegation, and if you search for java and delegation, > > it seems not (which is not THAT surprising IMHO): > > Thanks Marco. So it is actually similar to Object Pascal where you use > object composition, but with Object

Re: [fpc-other] Object Pascal Interface Delegation, but in Java

2017-09-09 Thread Graeme Geldenhuys
On 2017-09-09 18:17, Graeme Geldenhuys wrote: I'm sure Eclipse must have that code-generation functionality built-in or an add-on that can do that. And my guess was correct. :) In Eclipse select "Source -> Generate Delegate Methods". Select the field variable that will do the delegation.

Re: [fpc-other] Object Pascal Interface Delegation, but in Java

2017-09-09 Thread Graeme Geldenhuys
On 2017-09-09 17:39, Marco van de Voort wrote: That is often called delegation, and if you search for java and delegation, it seems not (which is not THAT surprising IMHO): Thanks Marco. So it is actually similar to Object Pascal where you use object composition, but with Object Pascal's

Re: [fpc-other] Object Pascal Interface Delegation, but in Java

2017-09-09 Thread Marco van de Voort
In our previous episode, Graeme Geldenhuys said: > > Does anybody familiar with Object Pascal and Java know if Java supports > something similar to Object Pascal's Interface Delegation "implements > syntax" functionality? That is often called delegation, and if you search for java and