Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to create a base class that implements several interfaces with lots of methods, example below.

Is there an easier way to delegate these method calls without having to create a horde of duplicate methods ?

public class MultipleInterfaces implements InterFaceOne, InterFace2 {

private InterFaceOne if1;
private InterFaceTwo if2;

public MultipleInterfaces() {
  if1 = new ImplentingClassOne();
  if2 = new ImplementingClassTwo();
}

@Override
public void classOneMethodOne { if1.methodOne(); }
@Override
public void classOneMethodTwo { if1.methodTwo(); }
/** Etc. */


@Override
public void classTwoMethodOne { if2.methodOne(); }
@Override
public void classTwoMethodTwo { if2.methodTwo(); }
/** Etc. */

}

share|improve this question

3 Answers

up vote 14 down vote accepted

As said, there's no way. However, a bit decent IDE can autogenerate delegate methods. For example Eclipse can do. First setup a template:

public class MultipleInterfaces implements InterFaceOne, InterFace2 {
    private InterFaceOne if1;
    private InterFaceTwo if2;
}

then rightclick, choose Source > Generate Delegate Methods and tick the both if1 and if2 fields and click OK.

See also the following screens:

alt text


alt text


alt text

share|improve this answer
Thanks to BalusC and Lukas for such quick and useful answers. My project is based in Eclipse, so I was able to use BalusC's answer in near real-time ! Worked like a charm, and saved me several hours of frustrating work. As a new user of this forum, I am suprised and delighted at the quality of the participants here. – Chuck Mosher Dec 28 '10 at 15:03
You're welcome. – BalusC Dec 28 '10 at 15:05
Great hint! I didn't know that and will save 100's of hours in the future :) The good thing about stackoverflow: you'll also learn from questions you didn't ask yourself! – Lukas Eder Dec 28 '10 at 15:13
@Lukas: you're welcome as well. – BalusC Dec 28 '10 at 15:33

Unfortunately: NO.

We're all eagerly awaiting the Java support for extension methods

share|improve this answer

There's no pretty way. You might be able to use a proxy with the handler having the target methods and delegating everything else to them. Of course you'll have to use a factory because there'll be no constructor.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.