Creating delegate methods for the visible property of the parent class

Eclipse has a handy command

Source -> Generate Delegate Methods …

Unfortunately, this only works for the properties of the current class, and not for the visible properties of one of its parent class.

Do you know a workaround by which I can automatically create delegate methods for a property inherited from the parent class?

+5
source share
1 answer

Create them in the parent class, and then use cut and paste to move them to the right place.

+1
source

All Articles