I am learning Java and I want to make my class into an observable class.
However I already have it extending another class.
What should I do?
Multiple inheritance (to extend two classes) is not possible in Java. Is considered a bad design in almost all cases.
If you give us some more information, maybe somebody can help you a little more.