I have a wrapper class and an object it is wrapping. I want to call wrapper.method()
and have it equate to object.method()
without explicitly defining it for wrapper.
Is this possible?
Because otherwise you have to copy and paste every single of object's methods because Java is all about encapsulation and making the object public would make rivers run red.