Make a class both Observer and Observable
Hi,
Sorry If it's a basic question, but I would like to know if there is any problem if I do something like this:
public MyClassextends Observableimplements Observer{
}
MyClass is observed by another class and observes another one too. Any problem with that ?
Thanks !

