KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > swing > event > MouseInputListener


1 /*
2  * @(#)MouseInputListener.java 1.10 03/12/19
3  *
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 JavaDoc;
11 import java.awt.event.MouseMotionListener JavaDoc;
12
13 /**
14  * A listener implementing all the methods in both the MouseListener and
15  * MouseMotionListener interfaces.
16  *
17  * @version 1.10 12/19/03
18  * @author Philip Milne
19  */

20
21 public interface MouseInputListener extends MouseListener JavaDoc, MouseMotionListener JavaDoc {
22 }
23
24
Popular Tags