I’ve got an Interface B that extends Interface A.
Now I want a Class Bravo which implements Interface B.
As I have a Class Alpha which implements Interface A, is it possible just to declare
class Bravo extends Alpha implements B
and save the implementation of A’s Methods due to the facet that Bravo inherits them?
Yes implementation would be available through inheritance