I have interface IA, interface IB extends IA and class A implements IA.
Now I want to create an anonymous class which extends from A and implements IB.
How would that look like? ...
In Java is it possible to dynamically create anonymous subclass instance given only instance of parent class?
The pattern code I'm trying to implement looks like this:
public interface IStringCarier { public String ...