Is there some template or something to implement iterface methods with accessing to wrapped member?
For example, suppose I have
public class MyClass implements List { private final List core; ... } and now I want to implement List by passing calls to wrapped like
@Override public int size() { return core.size(); } and so on.