Uses of Class
java.awt.event.MouseEvent
Package
Description
Contains all of the classes for creating user interfaces and for painting
graphics and images.
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.
Provides interfaces and classes for dealing with different types of events
fired by AWT components.
Provides a set of "lightweight" (all-Java language) components
that, to the maximum degree possible, work the same on all platforms.
Provides for events fired by Swing components.
Provides one interface and many abstract classes that Swing uses to provide
its pluggable look-and-feel capabilities.
Provides user interface objects built according to the Basic look and feel.
Provides user interface objects built according to the Java look and feel
(once codenamed Metal), which is the default look and feel.
Provides user interface objects that combine two or more look and feels.
Provides classes and interfaces for dealing with
javax.swing.JTable
.Provides classes and interfaces that deal with editable and noneditable text
components.
Provides the class
HTMLEditorKit
and supporting classes for creating
HTML text editors.-
Uses of MouseEvent in java.awt
Modifier and TypeMethodDescriptionvoid
AWTEventMulticaster.mouseClicked
(MouseEvent e) Handles the mouseClicked event by invoking the mouseClicked methods on listener-a and listener-b.void
AWTEventMulticaster.mouseDragged
(MouseEvent e) Handles the mouseDragged event by invoking the mouseDragged methods on listener-a and listener-b.void
AWTEventMulticaster.mouseEntered
(MouseEvent e) Handles the mouseEntered event by invoking the mouseEntered methods on listener-a and listener-b.void
AWTEventMulticaster.mouseExited
(MouseEvent e) Handles the mouseExited event by invoking the mouseExited methods on listener-a and listener-b.void
AWTEventMulticaster.mouseMoved
(MouseEvent e) Handles the mouseMoved event by invoking the mouseMoved methods on listener-a and listener-b.void
AWTEventMulticaster.mousePressed
(MouseEvent e) Handles the mousePressed event by invoking the mousePressed methods on listener-a and listener-b.void
AWTEventMulticaster.mouseReleased
(MouseEvent e) Handles the mouseReleased event by invoking the mouseReleased methods on listener-a and listener-b.protected void
Component.processMouseEvent
(MouseEvent e) Processes mouse events occurring on this component by dispatching them to any registeredMouseListener
objects.protected void
Component.processMouseMotionEvent
(MouseEvent e) Processes mouse motion events occurring on this component by dispatching them to any registeredMouseMotionListener
objects. -
Uses of MouseEvent in java.awt.dnd
Modifier and TypeMethodDescriptionvoid
MouseDragGestureRecognizer.mouseClicked
(MouseEvent e) Invoked when the mouse has been clicked on a component.void
MouseDragGestureRecognizer.mouseDragged
(MouseEvent e) Invoked when a mouse button is pressed on a component.void
MouseDragGestureRecognizer.mouseEntered
(MouseEvent e) Invoked when the mouse enters a component.void
MouseDragGestureRecognizer.mouseExited
(MouseEvent e) Invoked when the mouse exits a component.void
MouseDragGestureRecognizer.mouseMoved
(MouseEvent e) Invoked when the mouse button has been moved on a component (with no buttons no down).void
MouseDragGestureRecognizer.mousePressed
(MouseEvent e) Invoked when a mouse button has been pressed on aComponent
.void
MouseDragGestureRecognizer.mouseReleased
(MouseEvent e) Invoked when a mouse button has been released on a component. -
Uses of MouseEvent in java.awt.event
Modifier and TypeClassDescriptionclass
An event which indicates that the mouse wheel was rotated in a component.Modifier and TypeMethodDescriptionvoid
MouseAdapter.mouseClicked
(MouseEvent e) Invoked when the mouse button has been clicked (pressed and released) on a component.void
MouseListener.mouseClicked
(MouseEvent e) Invoked when the mouse button has been clicked (pressed and released) on a component.void
MouseAdapter.mouseDragged
(MouseEvent e) Invoked when a mouse button is pressed on a component and then dragged.void
MouseMotionAdapter.mouseDragged
(MouseEvent e) Invoked when a mouse button is pressed on a component and then dragged.void
MouseMotionListener.mouseDragged
(MouseEvent e) Invoked when a mouse button is pressed on a component and then dragged.void
MouseAdapter.mouseEntered
(MouseEvent e) Invoked when the mouse enters a component.void
MouseListener.mouseEntered
(MouseEvent e) Invoked when the mouse enters a component.void
MouseAdapter.mouseExited
(MouseEvent e) Invoked when the mouse exits a component.void
MouseListener.mouseExited
(MouseEvent e) Invoked when the mouse exits a component.void
MouseAdapter.mouseMoved
(MouseEvent e) Invoked when the mouse cursor has been moved onto a component but no buttons have been pushed.void
MouseMotionAdapter.mouseMoved
(MouseEvent e) Invoked when the mouse button has been moved on a component (with no buttons no down).void
MouseMotionListener.mouseMoved
(MouseEvent e) Invoked when the mouse cursor has been moved onto a component but no buttons have been pushed.void
MouseAdapter.mousePressed
(MouseEvent e) Invoked when a mouse button has been pressed on a component.void
MouseListener.mousePressed
(MouseEvent e) Invoked when a mouse button has been pressed on a component.void
MouseAdapter.mouseReleased
(MouseEvent e) Invoked when a mouse button has been released on a component.void
MouseListener.mouseReleased
(MouseEvent e) Invoked when a mouse button has been released on a component. -
Uses of MouseEvent in javax.swing
Modifier and TypeMethodDescriptionstatic MouseEvent
SwingUtilities.convertMouseEvent
(Component source, MouseEvent sourceEvent, Component destination) Returns a MouseEvent similar tosourceEvent
except that its x and y members have been converted todestination
's coordinate system.Modifier and TypeMethodDescriptionstatic MouseEvent
SwingUtilities.convertMouseEvent
(Component source, MouseEvent sourceEvent, Component destination) Returns a MouseEvent similar tosourceEvent
except that its x and y members have been converted todestination
's coordinate system.JComponent.getPopupLocation
(MouseEvent event) Returns the preferred location to display the popup menu in this component's coordinate system.JComponent.getToolTipLocation
(MouseEvent event) Returns the tooltip location in this component's coordinate system.JComponent.getToolTipText
(MouseEvent event) Returns the string to be used as the tooltip for event.JList.getToolTipText
(MouseEvent event) Returns the tooltip text to be used for the given event.JTabbedPane.getToolTipText
(MouseEvent event) Returns the tooltip text for the component determined by the mouse event location.JTable.getToolTipText
(MouseEvent event) OverridesJComponent
'sgetToolTipText
method in order to allow the renderer's tips to be used if it has text set.JTree.getToolTipText
(MouseEvent event) OverridesJComponent
'sgetToolTipText
method in order to allow renderer's tips to be used if it has text set.static boolean
SwingUtilities.isLeftMouseButton
(MouseEvent anEvent) Returns true if the mouse event specifies the left mouse button.static boolean
SwingUtilities.isMiddleMouseButton
(MouseEvent anEvent) Returns true if the mouse event specifies the middle mouse button.boolean
JPopupMenu.isPopupTrigger
(MouseEvent e) Returns true if theMouseEvent
is considered a popup trigger by theJPopupMenu
's currently installed UI.static boolean
SwingUtilities.isRightMouseButton
(MouseEvent anEvent) Returns true if the mouse event specifies the right mouse button.void
ToolTipManager.mouseDragged
(MouseEvent event) Called when the mouse is pressed and dragged.void
ToolTipManager.mouseEntered
(MouseEvent event) Called when the mouse enters the region of a component.void
ToolTipManager.mouseExited
(MouseEvent event) Called when the mouse exits the region of a component.void
ToolTipManager.mouseMoved
(MouseEvent event) Called when the mouse is moved.void
ToolTipManager.mousePressed
(MouseEvent event) Called when the mouse is pressed.protected void
JComponent.processMouseEvent
(MouseEvent e) Processes mouse events occurring on this component by dispatching them to any registeredMouseListener
objects, refer toComponent.processMouseEvent(MouseEvent)
for a complete description of this method.void
JMenuBar.processMouseEvent
(MouseEvent event, MenuElement[] path, MenuSelectionManager manager) Implemented to be aMenuElement
-- does nothing.void
JMenuItem.processMouseEvent
(MouseEvent e, MenuElement[] path, MenuSelectionManager manager) Processes a mouse event forwarded from theMenuSelectionManager
and changes the menu selection, if necessary, by using theMenuSelectionManager
's API.void
JPopupMenu.processMouseEvent
(MouseEvent event, MenuElement[] path, MenuSelectionManager manager) This method is required to conform to theMenuElement
interface, but it not implemented.void
MenuElement.processMouseEvent
(MouseEvent event, MenuElement[] path, MenuSelectionManager manager) Processes a mouse event.void
MenuSelectionManager.processMouseEvent
(MouseEvent event) When a MenuElement receives an event from a MouseListener, it should never process the event directly.protected void
JComponent.processMouseMotionEvent
(MouseEvent e) Processes mouse motion events, such as MouseEvent.MOUSE_DRAGGED. -
Uses of MouseEvent in javax.swing.event
Modifier and TypeClassDescriptionclass
MenuDragMouseEvent is used to notify interested parties that the menu element has received a MouseEvent forwarded to it under drag conditions. -
Uses of MouseEvent in javax.swing.plaf
Modifier and TypeMethodDescriptionboolean
PopupMenuUI.isPopupTrigger
(MouseEvent e) Returns whether or not the givenMouseEvent
is the popup menu trigger event for the platformprotected void
LayerUI.processMouseEvent
(MouseEvent e, JLayer<? extends V> l) Processes mouse events occurring on theJLayer
or any of its subcomponents.protected void
LayerUI.processMouseMotionEvent
(MouseEvent e, JLayer<? extends V> l) Processes mouse motion event occurring on theJLayer
or any of its subcomponents. -
Uses of MouseEvent in javax.swing.plaf.basic
Modifier and TypeMethodDescriptionprotected MouseEvent
BasicComboPopup.convertMouseEvent
(MouseEvent e) Converts mouse event.Modifier and TypeMethodDescriptionprotected void
BasicSplitPaneDivider.DragController.completeDrag
(MouseEvent e) Messages finishDraggingTo with the new location for the mouse event.protected void
BasicSplitPaneDivider.DragController.continueDrag
(MouseEvent e) Messages dragDividerTo with the new location for the mouse event.protected MouseEvent
BasicComboPopup.convertMouseEvent
(MouseEvent e) Converts mouse event.protected void
BasicComboPopup.delegateFocus
(MouseEvent e) This is a utility method that helps event handlers figure out where to send the focus when the popup is brought up.protected boolean
BasicTreeUI.isMultiSelectEvent
(MouseEvent event) Returningtrue
signifies a mouse event on the node should select from the anchor point.protected boolean
BasicTreeUI.isToggleEvent
(MouseEvent event) Returningtrue
indicates the row under the mouse should be toggled based on the event.protected boolean
BasicTreeUI.isToggleSelectionEvent
(MouseEvent event) Returningtrue
signifies a mouse event on the node should toggle the selection of only the row under mouse.void
BasicButtonListener.mouseClicked
(MouseEvent e) void
BasicInternalFrameUI.BorderListener.mouseClicked
(MouseEvent e) void
BasicInternalFrameUI.GlassPaneDispatcher.mouseClicked
(MouseEvent e) Invoked when the mouse button has been clicked (pressed and released) on a component.void
BasicListUI.MouseInputHandler.mouseClicked
(MouseEvent e) void
BasicMenuItemUI.MouseInputHandler.mouseClicked
(MouseEvent e) Deprecated.Invoked when the mouse button has been clicked (pressed and released) on a component.void
BasicMenuUI.MouseInputHandler.mouseClicked
(MouseEvent e) void
BasicTableHeaderUI.MouseInputHandler.mouseClicked
(MouseEvent e) void
BasicTableUI.MouseInputHandler.mouseClicked
(MouseEvent e) void
BasicToolBarUI.DockingListener.mouseClicked
(MouseEvent e) void
BasicTreeUI.MouseInputHandler.mouseClicked
(MouseEvent e) void
BasicButtonListener.mouseDragged
(MouseEvent e) void
BasicDesktopIconUI.MouseInputHandler.mouseDragged
(MouseEvent e) void
BasicInternalFrameUI.BorderListener.mouseDragged
(MouseEvent e) void
BasicInternalFrameUI.GlassPaneDispatcher.mouseDragged
(MouseEvent e) Invoked when a mouse button is pressed on a component and then dragged.void
BasicListUI.MouseInputHandler.mouseDragged
(MouseEvent e) void
BasicMenuItemUI.MouseInputHandler.mouseDragged
(MouseEvent e) Deprecated.Invoked when a mouse button is pressed on a component and then dragged.void
BasicMenuUI.MouseInputHandler.mouseDragged
(MouseEvent e) Invoked when a mouse button is pressed on the menu and then dragged.void
BasicScrollBarUI.TrackListener.mouseDragged
(MouseEvent e) Set the models value to the position of the thumb's top of Vertical scrollbar, or the left/right of Horizontal scrollbar in left-to-right/right-to-left scrollbar relative to the origin of the track.void
BasicSliderUI.TrackListener.mouseDragged
(MouseEvent e) Set the models value to the position of the top/left of the thumb relative to the origin of the track.void
BasicSplitPaneDivider.MouseHandler.mouseDragged
(MouseEvent e) If dragger is not null it is messaged with continueDrag.void
BasicTableHeaderUI.MouseInputHandler.mouseDragged
(MouseEvent e) void
BasicTableUI.MouseInputHandler.mouseDragged
(MouseEvent e) void
BasicToolBarUI.DockingListener.mouseDragged
(MouseEvent e) void
BasicTreeUI.MouseHandler.mouseDragged
(MouseEvent e) void
BasicTreeUI.MouseInputHandler.mouseDragged
(MouseEvent e) void
BasicButtonListener.mouseEntered
(MouseEvent e) void
BasicFileChooserUI.DoubleClickListener.mouseEntered
(MouseEvent e) The JList used for representing the files is created by subclasses, but the selection is monitored in this class.void
BasicInternalFrameUI.BorderListener.mouseEntered
(MouseEvent e) void
BasicInternalFrameUI.GlassPaneDispatcher.mouseEntered
(MouseEvent e) Invoked when the mouse enters a component.void
BasicListUI.MouseInputHandler.mouseEntered
(MouseEvent e) void
BasicMenuItemUI.MouseInputHandler.mouseEntered
(MouseEvent e) Deprecated.Invoked when the mouse enters a component.void
BasicMenuUI.MouseInputHandler.mouseEntered
(MouseEvent e) Invoked when the cursor enters the menu.void
BasicSplitPaneDivider.MouseHandler.mouseEntered
(MouseEvent e) Invoked when the mouse enters a component.void
BasicTableHeaderUI.MouseInputHandler.mouseEntered
(MouseEvent e) void
BasicTableUI.MouseInputHandler.mouseEntered
(MouseEvent e) void
BasicToolBarUI.DockingListener.mouseEntered
(MouseEvent e) void
BasicTreeUI.MouseInputHandler.mouseEntered
(MouseEvent e) void
BasicButtonListener.mouseExited
(MouseEvent e) void
BasicInternalFrameUI.BorderListener.mouseExited
(MouseEvent e) void
BasicInternalFrameUI.GlassPaneDispatcher.mouseExited
(MouseEvent e) Invoked when the mouse exits a component.void
BasicListUI.MouseInputHandler.mouseExited
(MouseEvent e) void
BasicMenuItemUI.MouseInputHandler.mouseExited
(MouseEvent e) Deprecated.Invoked when the mouse exits a component.void
BasicMenuUI.MouseInputHandler.mouseExited
(MouseEvent e) void
BasicScrollBarUI.TrackListener.mouseExited
(MouseEvent e) Invoked when the mouse exits the scrollbar.void
BasicSplitPaneDivider.MouseHandler.mouseExited
(MouseEvent e) Invoked when the mouse exits a component.void
BasicTableHeaderUI.MouseInputHandler.mouseExited
(MouseEvent e) void
BasicTableUI.MouseInputHandler.mouseExited
(MouseEvent e) void
BasicToolBarUI.DockingListener.mouseExited
(MouseEvent e) void
BasicTreeUI.MouseInputHandler.mouseExited
(MouseEvent e) void
BasicButtonListener.mouseMoved
(MouseEvent e) void
BasicDesktopIconUI.MouseInputHandler.mouseMoved
(MouseEvent e) void
BasicInternalFrameUI.BorderListener.mouseMoved
(MouseEvent e) void
BasicInternalFrameUI.GlassPaneDispatcher.mouseMoved
(MouseEvent e) Invoked when the mouse cursor has been moved onto a component but no buttons have been pushed.void
BasicListUI.MouseInputHandler.mouseMoved
(MouseEvent e) void
BasicMenuItemUI.MouseInputHandler.mouseMoved
(MouseEvent e) Deprecated.Invoked when the mouse cursor has been moved onto a component but no buttons have been pushed.void
BasicMenuUI.MouseInputHandler.mouseMoved
(MouseEvent e) void
BasicScrollBarUI.TrackListener.mouseMoved
(MouseEvent e) Invoked when the mouse cursor has been moved onto a component but no buttons have been pushed.void
BasicSliderUI.TrackListener.mouseMoved
(MouseEvent e) Invoked when the mouse cursor has been moved onto a component but no buttons have been pushed.void
BasicSplitPaneDivider.MouseHandler.mouseMoved
(MouseEvent e) Resets the cursor based on the orientation.void
BasicTableHeaderUI.MouseInputHandler.mouseMoved
(MouseEvent e) void
BasicTableUI.MouseInputHandler.mouseMoved
(MouseEvent e) void
BasicToolBarUI.DockingListener.mouseMoved
(MouseEvent e) void
BasicTreeUI.MouseHandler.mouseMoved
(MouseEvent e) Invoked when the mouse button has been moved on a component (with no buttons no down).void
BasicTreeUI.MouseInputHandler.mouseMoved
(MouseEvent e) void
BasicButtonListener.mousePressed
(MouseEvent e) void
BasicComboPopup.InvocationMouseHandler.mousePressed
(MouseEvent e) Responds to mouse-pressed events on the combo box.void
BasicDesktopIconUI.MouseInputHandler.mousePressed
(MouseEvent e) void
BasicInternalFrameUI.BorderListener.mousePressed
(MouseEvent e) void
BasicInternalFrameUI.GlassPaneDispatcher.mousePressed
(MouseEvent e) Invoked when a mouse button has been pressed on a component.void
BasicListUI.MouseInputHandler.mousePressed
(MouseEvent e) void
BasicMenuItemUI.MouseInputHandler.mousePressed
(MouseEvent e) Deprecated.Invoked when a mouse button has been pressed on a component.void
BasicMenuUI.MouseInputHandler.mousePressed
(MouseEvent e) Invoked when the mouse has been clicked on the menu.void
BasicScrollBarUI.TrackListener.mousePressed
(MouseEvent e) If the mouse is pressed above the "thumb" component then reduce the scrollbars value by one page ("page up"), otherwise increase it by one page.void
BasicSliderUI.TrackListener.mousePressed
(MouseEvent e) If the mouse is pressed above the "thumb" component then reduce the scrollbars value by one page ("page up"), otherwise increase it by one page.void
BasicSplitPaneDivider.MouseHandler.mousePressed
(MouseEvent e) Starts the dragging session by creating the appropriate instance of DragController.void
BasicTableHeaderUI.MouseInputHandler.mousePressed
(MouseEvent e) void
BasicTableUI.MouseInputHandler.mousePressed
(MouseEvent e) void
BasicToolBarUI.DockingListener.mousePressed
(MouseEvent e) void
BasicTreeUI.MouseHandler.mousePressed
(MouseEvent e) Invoked when a mouse button has been pressed on a component.void
BasicTreeUI.MouseInputHandler.mousePressed
(MouseEvent e) void
BasicButtonListener.mouseReleased
(MouseEvent e) void
BasicComboPopup.InvocationMouseHandler.mouseReleased
(MouseEvent e) Responds to the user terminating a click or drag that began on the combo box.void
BasicDesktopIconUI.MouseInputHandler.mouseReleased
(MouseEvent e) void
BasicInternalFrameUI.BorderListener.mouseReleased
(MouseEvent e) void
BasicInternalFrameUI.GlassPaneDispatcher.mouseReleased
(MouseEvent e) Invoked when a mouse button has been released on a component.void
BasicListUI.MouseInputHandler.mouseReleased
(MouseEvent e) void
BasicMenuItemUI.MouseInputHandler.mouseReleased
(MouseEvent e) Deprecated.Invoked when a mouse button has been released on a component.void
BasicMenuUI.MouseInputHandler.mouseReleased
(MouseEvent e) Invoked when the mouse has been released on the menu.void
BasicSliderUI.TrackListener.mouseReleased
(MouseEvent e) Invoked when a mouse button has been released on a component.void
BasicSplitPaneDivider.MouseHandler.mouseReleased
(MouseEvent e) If dragger is not null it is messaged with completeDrag.void
BasicTableHeaderUI.MouseInputHandler.mouseReleased
(MouseEvent e) void
BasicTableUI.MouseInputHandler.mouseReleased
(MouseEvent e) void
BasicToolBarUI.DockingListener.mouseReleased
(MouseEvent e) void
BasicTreeUI.MouseInputHandler.mouseReleased
(MouseEvent e) protected int
BasicSplitPaneDivider.DragController.positionForMouseEvent
(MouseEvent e) Returns the new position to put the divider at based on the passed in MouseEvent.protected int
BasicSplitPaneDivider.VerticalDragController.positionForMouseEvent
(MouseEvent e) Returns the new position to put the divider at based on the passed in MouseEvent.void
BasicCheckBoxMenuItemUI.processMouseEvent
(JMenuItem item, MouseEvent e, MenuElement[] path, MenuSelectionManager manager) Invoked when mouse event occurs.void
BasicRadioButtonMenuItemUI.processMouseEvent
(JMenuItem item, MouseEvent e, MenuElement[] path, MenuSelectionManager manager) Invoked when mouse event occurs.protected void
BasicTreeUI.selectPathForEvent
(TreePath path, MouseEvent event) Messaged to update the selection based on aMouseEvent
over a particular row.protected boolean
BasicTreeUI.startEditing
(TreePath path, MouseEvent event) Will start editing for node if there is acellEditor
andshouldSelectCell
returnstrue
.protected void
BasicComboPopup.updateListBoxSelectionForEvent
(MouseEvent anEvent, boolean shouldScroll) A utility method used by the event listeners.ModifierConstructorDescriptionprotected
Constructs a new instance ofDragController
.MouseInputHandler
(Component source, Component destination, MouseEvent event) Constructs a new instance ofMouseInputHandler
.protected
Constructs a new instance ofVerticalDragController
. -
Uses of MouseEvent in javax.swing.plaf.metal
Modifier and TypeMethodDescriptionvoid
MetalComboBoxUI.MetalComboPopup.delegateFocus
(MouseEvent e) Deprecated. -
Uses of MouseEvent in javax.swing.plaf.multi
Modifier and TypeMethodDescriptionboolean
MultiPopupMenuUI.isPopupTrigger
(MouseEvent a) Invokes theisPopupTrigger
method on each UI handled by this object. -
Uses of MouseEvent in javax.swing.table
Modifier and TypeMethodDescriptionJTableHeader.getToolTipText
(MouseEvent event) Allows the renderer's tips to be used if there is text set. -
Uses of MouseEvent in javax.swing.text
Modifier and TypeMethodDescriptionJTextComponent.getToolTipText
(MouseEvent event) Returns the string to be used as the tooltip forevent
.void
DefaultCaret.mouseClicked
(MouseEvent e) Called when the mouse is clicked.void
DefaultCaret.mouseDragged
(MouseEvent e) Moves the caret position according to the mouse pointer's current location.void
DefaultCaret.mouseEntered
(MouseEvent e) Called when the mouse enters a region.void
DefaultCaret.mouseExited
(MouseEvent e) Called when the mouse exits a region.void
DefaultCaret.mouseMoved
(MouseEvent e) Called when the mouse is moved.void
DefaultCaret.mousePressed
(MouseEvent e) If button 1 is pressed, this is implemented to request focus on the associated text component, and to set the caret position.void
DefaultCaret.mouseReleased
(MouseEvent e) Called when the mouse is released.protected void
DefaultCaret.moveCaret
(MouseEvent e) Tries to move the position of the caret from the coordinates of a mouse event, using viewToModel().protected void
DefaultCaret.positionCaret
(MouseEvent e) Tries to set the position of the caret from the coordinates of a mouse event, using viewToModel(). -
Uses of MouseEvent in javax.swing.text.html
Modifier and TypeMethodDescriptionvoid
HTMLEditorKit.LinkController.mouseClicked
(MouseEvent e) Called for a mouse click event.void
HTMLEditorKit.LinkController.mouseDragged
(MouseEvent e) void
HTMLEditorKit.LinkController.mouseMoved
(MouseEvent e)