Name: dbT83986 Date: 04/25/99
Your documentation indicates that MouseInputListener is an interface
which extends MouseListener and MouseMotionListener.
public abstract interface MouseInputListener
extends MouseListener, MouseMotionListener
However, your documentation also states the following:
A listener implementing all the methods in both the MouseListener and
MouseMotionListener interfaces.
This establishes an ambiguity, for it indicates that MouseInputListener is
not an interface, as you have defined it, but is instead a class implementing
the MouseListener and MouseMotionListener interfaces.
(Review ID: 57455)
======================================================================