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
Use interfaces instead. The following is how that would look in code:
public Class ClassName implements Interface1, Interface2 { Methods, fields etc... }