I have the following class structure:
Class Human, with message("Hello, ")
Class Townsmen extends Human, with message("I live in town.")
Class Merchant extends Townsmen, with message("I'm merchant.")
Is it possible for an instance of Merchant to say "Hello, I'm merchant.", using super
calls? I have a program in Java, and the code is much more complex, but the idea is the same. In addition I cannot modify Human nor Townsmen classes.