public A {
public A(String arg0) {
...
}
public A(String arg0, String arg1) {
...
}
}
public B extends A {
}
I would like B to automatically have the constructors inherited from A without having to implement them explicitly like:
public B(String arg0) {
super(arg0);
}
public B(String arg0, String arg1) {
super(arg0, arg1);
}
How can I achieve this?