| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use MouseListener | |
|---|---|
| java.awt | Contains all of the classes for creating user interfaces and for painting graphics and images. | 
| java.awt.dnd | Drag and Drop is a direct manipulation gesture found in many Graphical User Interface systems that provides a mechanism to transfer information between two entities logically associated with presentation elements in the GUI. | 
| java.awt.event | Provides interfaces and classes for dealing with different types of events fired by AWT components. | 
| javax.swing | Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms. | 
| javax.swing.event | Provides for events fired by Swing components. | 
| javax.swing.plaf.basic | Provides user interface objects built according to the Basic look and feel. | 
| javax.swing.plaf.metal | Provides user interface objects built according to the Java look and feel (once codenamed Metal), which is the default look and feel. | 
| javax.swing.text | Provides classes and interfaces that deal with editable and noneditable text components. | 
| javax.swing.text.html | Provides the class HTMLEditorKitand supporting classes
for creating HTML text editors. | 
| Uses of MouseListener in java.awt | 
|---|
| Classes in java.awt that implement MouseListener | |
|---|---|
|  class | AWTEventMulticasterAWTEventMulticasterimplements efficient and thread-safe multi-cast
 event dispatching for the AWT events defined in thejava.awt.eventpackage. | 
| Methods in java.awt that return MouseListener | |
|---|---|
| static MouseListener | AWTEventMulticaster.add(MouseListener a,
    MouseListener b)Adds mouse-listener-a with mouse-listener-b and returns the resulting multicast listener. | 
|  MouseListener[] | Component.getMouseListeners()Returns an array of all the mouse listeners registered on this component. | 
|  MouseListener[] | TrayIcon.getMouseListeners()Returns an array of all the mouse listeners registered on this TrayIcon. | 
| static MouseListener | AWTEventMulticaster.remove(MouseListener l,
       MouseListener oldl)Removes the old mouse-listener from mouse-listener-l and returns the resulting multicast listener. | 
| Methods in java.awt with parameters of type MouseListener | |
|---|---|
| static MouseListener | AWTEventMulticaster.add(MouseListener a,
    MouseListener b)Adds mouse-listener-a with mouse-listener-b and returns the resulting multicast listener. | 
|  void | Component.addMouseListener(MouseListener l)Adds the specified mouse listener to receive mouse events from this component. | 
|  void | TrayIcon.addMouseListener(MouseListener listener)Adds the specified mouse listener to receive mouse events from this TrayIcon. | 
| static MouseListener | AWTEventMulticaster.remove(MouseListener l,
       MouseListener oldl)Removes the old mouse-listener from mouse-listener-l and returns the resulting multicast listener. | 
|  void | Component.removeMouseListener(MouseListener l)Removes the specified mouse listener so that it no longer receives mouse events from this component. | 
|  void | TrayIcon.removeMouseListener(MouseListener listener)Removes the specified mouse listener. | 
| Uses of MouseListener in java.awt.dnd | 
|---|
| Classes in java.awt.dnd that implement MouseListener | |
|---|---|
|  class | MouseDragGestureRecognizerThis abstract subclass of DragGestureRecognizerdefines aDragGestureRecognizerfor mouse-based gestures. | 
| Uses of MouseListener in java.awt.event | 
|---|
| Classes in java.awt.event that implement MouseListener | |
|---|---|
|  class | MouseAdapterAn abstract adapter class for receiving mouse events. | 
| Uses of MouseListener in javax.swing | 
|---|
| Classes in javax.swing that implement MouseListener | |
|---|---|
|  class | ToolTipManagerManages all the ToolTipsin the system. | 
| Uses of MouseListener in javax.swing.event | 
|---|
| Subinterfaces of MouseListener in javax.swing.event | |
|---|---|
|  interface | MouseInputListenerA listener implementing all the methods in both the MouseListenerandMouseMotionListenerinterfaces. | 
| Classes in javax.swing.event that implement MouseListener | |
|---|---|
|  class | MouseInputAdapterAn empty implementation of the MouseInputListenerinterface, provided
 as a convenience to simplify the task of creating listeners, by extending
 and implementing only the methods of interest. | 
| Uses of MouseListener in javax.swing.plaf.basic | 
|---|
| Classes in javax.swing.plaf.basic that implement MouseListener | |
|---|---|
|  class | BasicButtonListenerButton Listener | 
| protected  class | BasicComboPopup.InvocationMouseHandlerA listener to be registered upon the combo box (not its popup menu) to handle mouse events that affect the state of the popup menu. | 
| protected  class | BasicComboPopup.ListMouseHandlerThis listener hides the popup when the mouse is released in the list. | 
|  class | BasicDesktopIconUI.MouseInputHandlerListens for mouse movements and acts on them. | 
| protected  class | BasicFileChooserUI.DoubleClickListener | 
| protected  class | BasicInternalFrameUI.BorderListenerListens for border adjustments. | 
| protected  class | BasicInternalFrameUI.GlassPaneDispatcher | 
|  class | BasicListUI.MouseInputHandlerMouse input, and focus handling for JList. | 
| protected  class | BasicMenuItemUI.MouseInputHandler | 
| protected  class | BasicMenuUI.MouseInputHandlerInstantiated and used by a menu item to handle the current menu selection from mouse events. | 
| protected  class | BasicScrollBarUI.ArrowButtonListenerListener for cursor keys. | 
| protected  class | BasicScrollBarUI.TrackListenerTrack mouse drags. | 
|  class | BasicSliderUI.TrackListenerTrack mouse movements. | 
| protected  class | BasicSplitPaneDivider.MouseHandlerMouseHandler is responsible for converting mouse events (released, dragged...) into the appropriate DragController methods. | 
|  class | BasicTabbedPaneUI.MouseHandlerThis class should be treated as a "protected" inner class. | 
|  class | BasicTableHeaderUI.MouseInputHandlerThis inner class is marked "public" due to a compiler bug. | 
|  class | BasicTableUI.MouseInputHandlerThis inner class is marked "public" due to a compiler bug. | 
| static class | BasicTextUI.BasicCaret | 
|  class | BasicToolBarUI.DockingListenerThis class should be treated as a "protected" inner class. | 
|  class | BasicTreeUI.MouseHandlerTreeMouseListener is responsible for updating the selection based on mouse events. | 
|  class | BasicTreeUI.MouseInputHandlerMouseInputHandler handles passing all mouse events, including mouse motion events, until the mouse is released to the destination it is constructed with. | 
| Fields in javax.swing.plaf.basic declared as MouseListener | |
|---|---|
| protected  MouseListener | BasicComboPopup.listMouseListenerThis protected field is implementation specific. | 
| protected  MouseListener | BasicTabbedPaneUI.mouseListener | 
| protected  MouseListener | BasicComboPopup.mouseListenerThis protected field is implementation specific. | 
| protected  MouseListener | BasicComboBoxUI.popupMouseListener | 
| Methods in javax.swing.plaf.basic that return MouseListener | |
|---|---|
| protected  MouseListener | BasicFileChooserUI.createDoubleClickListener(JFileChooser fc,
                          JList list) | 
| protected  MouseListener | BasicComboPopup.createListMouseListener()Creates a mouse listener that watches for mouse events in the popup's list. | 
| protected  MouseListener | BasicTabbedPaneUI.createMouseListener() | 
| protected  MouseListener | BasicTreeUI.createMouseListener()Creates the listener responsible for updating the selection based on mouse events. | 
| protected  MouseListener | BasicComboPopup.createMouseListener()Creates a listener that will watch for mouse-press and release events on the combo box. | 
|  MouseListener | BasicComboPopup.getMouseListener()Implementation of ComboPopup.getMouseListener(). | 
|  MouseListener | ComboPopup.getMouseListener()Returns a mouse listener that will be added to the combo box or null. | 
| Uses of MouseListener in javax.swing.plaf.metal | 
|---|
| Classes in javax.swing.plaf.metal that implement MouseListener | |
|---|---|
| protected  class | MetalFileChooserUI.SingleClickListener | 
| protected  class | MetalToolBarUI.MetalDockingListener | 
| Uses of MouseListener in javax.swing.text | 
|---|
| Classes in javax.swing.text that implement MouseListener | |
|---|---|
|  class | DefaultCaretA default implementation of Caret. | 
| Uses of MouseListener in javax.swing.text.html | 
|---|
| Classes in javax.swing.text.html that implement MouseListener | |
|---|---|
| protected  class | FormView.MouseEventListenerMouseEventListener class to handle form submissions when an input with type equal to image is clicked on. | 
| static class | HTMLEditorKit.LinkControllerClass to watch the associated component and fire hyperlink events on it when appropriate. | 
| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
Copyright © 1993, 2010, Oracle and/or its affiliates. All rights reserved.