I have one class called HyperlinkEventMonitor that implements a HyperlinkListener. I want to extend this class so that it handles both hyperlink events and mouseevents. I tried creating a superclass but I'm not doing this right because I can't compile the code. Can someone show me how to do this.
For example: I tried
class MouseHyperLink extends HyperlinkEventMonitor, implements MouseListener {
}
But this is wrong.
How can I do this?
Thank you,
Elliott