I want to extend some class which is final, like Scanner. So, I need to use composition
public class MyScanner {
private final Scanner delegate;
}
now, Scanner
has 10 constructors.
How can I delegate all of them fast in Eclipse?
Generate Delegate Methods
function does not suggest to delegate constructors for some (unknown to me) reason.