I know that Java does not allow us to extend more than one class. I know that interfaces also exist and I don\'t want to use them this time. Is there some kind of trick or w
Java not support this for classes.You can use multiple interfaces.You can find what the problem with multiple inheritance in java
You can use inner classes like
public class class1 extends class2{ class Inner extends class3{ } }
SEE HERE