1. /*
  2. * @(#)MouseInputListener.java 1.9 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package javax.swing.event;
  8. import java.awt.event.MouseListener;
  9. import java.awt.event.MouseMotionListener;
  10. /**
  11. * A listener implementing all the methods in both the MouseListener and
  12. * MouseMotionListener interfaces.
  13. *
  14. * @version 1.9 01/23/03
  15. * @author Philip Milne
  16. */
  17. public interface MouseInputListener extends MouseListener, MouseMotionListener {
  18. }