FileDocCategorySizeDatePackage
MouseInputListener.javaAPI DocJava SE 5 API547Fri Aug 26 14:58:00 BST 2005javax.swing.event

MouseInputListener.java

/*
 * @(#)MouseInputListener.java	1.10 03/12/19
 *
 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

package javax.swing.event;

import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;

/**
 * A listener implementing all the methods in both the MouseListener and
 * MouseMotionListener interfaces.
 *
 * @version 1.10 12/19/03
 * @author Philip Milne
 */

public interface MouseInputListener extends MouseListener, MouseMotionListener {
}