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
Multiple inheritance in java is usually done by implementing multiple interfaces. You can not extend more than one class. A possible workaround may be to use some kind of object composition for instance aggregation.