Uses of Interface
org.eclipse.swt.events.MouseListener
-
Packages that use MouseListener Package Description org.eclipse.swt.events org.eclipse.swt.widgets -
-
Uses of MouseListener in org.eclipse.swt.events
Classes in org.eclipse.swt.events that implement MouseListener Modifier and Type Class Description classMouseAdapterThis adapter class provides default implementations for the methods described by theMouseListenerinterface.Methods in org.eclipse.swt.events that return MouseListener Modifier and Type Method Description static MouseListenerMouseListener. mouseDoubleClickAdapter(java.util.function.Consumer<MouseEvent> c)Static helper method to create aMouseListenerfor themouseDoubleClick(MouseEvent e)) method with a lambda expression.static MouseListenerMouseListener. mouseDownAdapter(java.util.function.Consumer<MouseEvent> c)Static helper method to create aMouseListenerfor themouseDown(MouseEvent e)) method with a lambda expression.static MouseListenerMouseListener. mouseUpAdapter(java.util.function.Consumer<MouseEvent> c)Static helper method to create aMouseListenerfor themouseUp(MouseEvent e)) method with a lambda expression. -
Uses of MouseListener in org.eclipse.swt.widgets
Methods in org.eclipse.swt.widgets with parameters of type MouseListener Modifier and Type Method Description voidControl. addMouseListener(MouseListener listener)Adds the listener to the collection of listeners who will be notified when mouse buttons are pressed and released, by sending it one of the messages defined in theMouseListenerinterface.voidControl. removeMouseListener(MouseListener listener)Removes the listener from the collection of listeners who will be notified when mouse buttons are pressed and released.
-