I'm trying to understand how can I draw a UML diagram of a program that extends one class and implements another interface. I've made this sketch but I'm not sure if it is correct.
A is a class
that has some fields and methods and B is an interface
which has some methods. And finally C is extending
from A and implements
B. ( like public class C extends A implements B in java)