1. /*
  2. * @(#)MouseInputListener.java 1.7 00/02/02
  3. *
  4. * Copyright 1998-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package javax.swing.event;
  11. import java.awt.event.MouseListener;
  12. import java.awt.event.MouseMotionListener;
  13. /**
  14. * A listener implementing all the methods in both the MouseListener and
  15. * MouseMotionListener interfaces.
  16. *
  17. * @version 1.7 02/02/00
  18. * @author Philip Milne
  19. */
  20. public interface MouseInputListener extends MouseListener, MouseMotionListener {
  21. }