1 /*2 * @(#)MouseInputListener.java 1.10 03/12/193 *4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 8 package javax.swing.event;9 10 import java.awt.event.MouseListener ;11 import java.awt.event.MouseMotionListener ;12 13 /**14 * A listener implementing all the methods in both the MouseListener and15 * MouseMotionListener interfaces.16 *17 * @version 1.10 12/19/0318 * @author Philip Milne19 */20 21 public interface MouseInputListener extends MouseListener , MouseMotionListener {22 }23 24